hyrious

Results 217 comments of hyrious

https://user-images.githubusercontent.com/8097890/167814420-17f7c030-35f4-4ca6-971b-184a3add1bc7.mp4 Maybe it has something to do with the local cache…… Here's what I did and what I saw: 0. Delete all cache data of codesandbox at chrome://settings/siteData?searchSubpage=codesandbox (not included...

I see. Here's the news: 1. I deleted all data of codesandbox from chrome://settings/content/siteDetails?site=https%3A%2F%2Fcodesandbox.io 2. I went to https://codesandbox.io/s/cjs-resolver-issue-xqwezd?file=/src/index.js, with adblock disabled and mathjs@10 (latest), it looks ok: ![1](https://user-images.githubusercontent.com/8097890/167836159-77ae23ee-3c34-48d8-a19a-67844748efea.png) 3....

Update: the solution seems to be install `svelte-preprocess`.

IMHO, the extension does not need to use exactly the same `svelte-preprocess` and preprocessors. You can bundle (add them to dependency) SASS (and less, stylus, etc.) into your extension to...

If there's no support on ``, can it just be silent to it? The svelte-lint.js above did provide this idea that just remove the `

Maybe we need an option like `--node:--env-file=.env`? The syntax is because I only have the same arg parser as esbuild, this new flag can be defined as `["node", list]`. There...

This option shall works now: ```console $ esbuild-dev test/index.ts undefined $ esbuild-dev --node:--env-file=test/.env test/index.ts hello ```

So far so good, the last thing preventing us to close this issue is [storybook](https://github.com/storybookjs/storybook) 7 (still in beta), which is meant to get rid of webpack completely. The storybook...

The easiest way to remove the json file's sourcemap is doing a postprocess on the output files and replace those json source contents with null. On the other hand if...