Jacob Hummer

Results 123 comments of Jacob Hummer
trafficstars

Sidenote that might warrant another issue: esm.run has the same issue as esm.sh with non-JS identifier exports. These are valid in ES2022: ```js // Yes, this is valid JavaScript! import...

TypeScript doesn't support it which is probably why it's not very common. https://github.com/microsoft/TypeScript/issues/40594

@messense > Does NPM have anything that is the Python equivalent of source distribution? See also https://medium.com/ochrona/understanding-python-package-distribution-types-25d53308a9a Probably not exactly. You can install right from a Git repo though! When...

Would this be something you'd consider putting in the wiki given your prior comments in #104 about the wiki being more "unofficial" since it lists other projects?

I know I left you hanging for literally like 2 months... but hey! here's some example ideas https://github.com/search?q=path%3A.devcontainer%2Fdevcontainer.json&type=code - https://github.com/puppeteer/puppeteer - https://github.com/etcd-io/etcd - https://github.com/MarlinFirmware/Marlin - https://github.com/dokku/dokku - https://github.com/KaTeX/KaTeX

If you still want a preview of "what will the JS be?" then you can add a preview-pack.yml or similar that runs `npm pack` and uploads the .tar.gz as an...

IMO the default options are pretty **universal**. You **never have to think about it again.** No configuring, just `npx prettier -w .` and you're done. I really wish they respected...

In the future, @mesqueeb you might want to consider adopting a widespread eslint config preset like: - https://github.com/xojs/xo#readme - https://github.com/sindresorhus/eslint-plugin-unicorn#preset-configs - https://www.npmjs.com/package/eslint-config-airbnb Or make your own! 🥳

Sidenote: prettier just released Prettier v3! https://prettier.io/blog/2023/07/05/3.0.0.html

My vote is to follow the existing known conventions and try to mirror the Node.js `node:util` `isSymbol()` and friends APIs and how they detect things. https://nodejs.org/api/util.html ![image](https://github.com/mesqueeb/is-what/assets/61068799/14e0ed86-fc0a-4eb4-8456-5528efe2e515) In this case,...