Ilan Copelyn

Results 25 comments of Ilan Copelyn

I've just installed for the first time (30ins ago) and am having the same problem: ``` http://localhost:9000/jspm_packages/github/Dogfalo/[email protected]/dist/css/materialize.min.css Failed to load resource: the server responded with a status of 404 (Not...

Thanks @adamelmore. I'm not sure whether the region is to blame. I tried it with `eu-west-2` and got the same problem. I'll try on a different machine this evening (ubuntu...

On the other machine I get a different error: ```sh (node:12483) UnhandledPromiseRejectionWarning: ValidationError: Stack [ness-web-ness-test-master] does not exist at deserializeAws_queryDescribeStackEventsCommandError (/code/ness-test/node_modules/@aws-sdk/client-cloudformation/dist/cjs/protocols/Aws_query.js:1872:41) at processTicksAndRejections (internal/process/task_queues.js:93:5) at async /code/ness-test/node_modules/@aws-sdk/middleware-serde/dist/cjs/deserializerMiddleware.js:6:20 at async /code/ness-test/node_modules/@aws-sdk/middleware-signing/dist/cjs/middleware.js:12:24...

I also found a bucket that has been created `ness-toolkit-bucket-1d37lrgy691mu` in the wrong region = `us-east-1`

Hi @adamelmore. Are you able to deploy my static html test repo? Is it something I've misconfigured? is there a way to reset/undo any changes which ness makes to my...

Hi there, What's the correct way to import json5 from esm code? See code below and error: I get: - `'json5' is a CommonJS module` if I use ` import...

hmm .. appears to be using cjs code ![image](https://user-images.githubusercontent.com/1793957/155291083-cd268e3e-45d9-4e9e-95ce-51b59e922145.png)

Hi @jordanbtucker, please checkout this sample repo: https://github.com/ilanc/esm-json5 and let me know what you think. There's a clear problem with trying to use ESM json5 in node: i.e. node will...

Makes sense, thanks for the reply

@jordanbtucker do you have a workaround for typescript? see error below ```ts // esm.ts import json5 from "json5/dist/index.mjs"; let json = `{ // comment a: 1, b: 1, c: 1...