Jacob Hummer

Results 124 comments of Jacob Hummer

this would be beneficial to allow forcing color to be enabled in ci like github actions which arent tty but still can show colors related: https://github.com/pypa/pip/issues/10909 https://github.com/Textualize/rich/issues/2425 https://github.com/wntrblm/nox/issues/502 https://github.com/python-poetry/cleo/issues/341 https://github.com/astral-sh/ruff/issues/5499...

An interesting thing is that `import("https://esm.sh/@nodefill/primordials")` works just fine. ![image](https://github.com/esm-dev/esm.sh/assets/61068799/36eaf8fd-329c-46d1-b3eb-853cbe437510) ...but the sub-path-thingie imports like `import("@nodefill/primordials/ArrayIsArray.js")` don't. ![image](https://github.com/esm-dev/esm.sh/assets/61068799/0d75b565-5040-40b8-bd78-db3fcb984d99) Another interesting thing is that https://esm.run works for all of these. ![image](https://github.com/esm-dev/esm.sh/assets/61068799/e993aac6-0222-425a-987c-37e037602e45)...

https://github.com/nodefill/primordials/releases/tag/v3.1.0 I made it work with esm.sh by manually duplicating the export names so that it got picked up by the CJS lexer. However, this **still doesn't recognize `eval`** which...

Almost. The named `eval` export still fails. ![image](https://github.com/esm-dev/esm.sh/assets/61068799/9561c3e1-f185-4e59-a674-6233d38cf9b9)

i'm using plain old markdown 😉 example: ``` # Uncaught TypeError: f is not defined ~~~ ~~~ reported by gh action test runner test.yml date ... on blah blah OS...

looks like this is where `process` is not defined https://github.com/denoland/deno/blob/24bdc1de33494bc1619bfebea826ab08ffb74a01/ext/node/polyfills/internal/util/parse_args/parse_args.js#L53

Are you per chance on Windows using `cmd.exe` or PowerShell? They don't seem to have good emoji support. I've found that the newer fancy [Windows Terminal](https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701?hl=en-us&gl=us) works much better with...

> they are not actually static Both Deno and Node.js disagree with you 🤣 Even if the export will end up as `undefined`, it's still a _named export_. https://github.com/nodejs/cjs-module-lexer ```js...

Actually, that still **doesn't work**: Raw text from unpkg: https://unpkg.com/@nodefill/[email protected]/dist/index-browser.js ```js exports.uncurryThis = exports.applyBind = exports.Proxy = exports.globalThis = exports.decodeURI /* ... */ = void 0 if (typeof primordials !==...

You're right, that does work! ![image](https://github.com/jsdelivr/jsdelivr/assets/61068799/38854e9f-cdb5-4b7d-94f2-81644b187551) unpkg source js: ![image](https://github.com/jsdelivr/jsdelivr/assets/61068799/207f6673-9439-4d24-9aa9-f9dee8c690e7) it even works in esm.run and esm.sh too! Win win! ![image](https://github.com/jsdelivr/jsdelivr/assets/61068799/b2a897d7-e5c2-4442-8d01-75b06966ba98) --- you've troubleshooted my problem and given me an...