Results 490 comments of Je Xia

the CLI is under development, currently it doesn't yet support windows platform

I'm thinking of adding an option for it.

you can simply add the `X-Real-Origin` header with "https://your-company.com" or use cloudflare

seems the version `@6.65.7` was published accidentally and deprecated ``` "deprecated": "This is an accidentally mis-tagged instance of 5.65.7" ```

i will updete the semver resovler to ignore deprecated versions, thanks for reporting!

if you are the libary author, you can add "browser" to exclude these node requires in brower: ```json { "name": "my-package", "version": "1.0.0", "browser": { "process": false, "fs": false }...

> The best option would be for esm.sh to smartly externalize a module if it's shared by multiple exposed entry points of a library. i like this idea, we can...

@Rich-Harris the `exports` is alreay externalized by default, for example, entries `esm.sh/svelte` and `esm.sh/internal/client` share the same module https://esm.sh/stable/[email protected]/es2022/internal/client.js, and entry `esm.sh/svelte` imports another module https://esm.sh/stable/[email protected]/es2022/svelte.mjs. I think the issue...

> no minification > easier to read the server minifies js by default to reduce network cast. i have the plan of adding a new option `minify=false` to disable the...