dynst

Results 113 issues of dynst

https://rolldown.rs/guide/notable-features#minification [`tsdown`](https://www.npmjs.com/package/tsdown) / rolldown use [`oxc-minify`](https://www.npmjs.com/package/oxc-minify) instead of esbuild. https://oxc.rs/docs/guide/usage/minifier.html

These are part of the tsconfig.json generated by `tsc --init` in TS 5.9. Also turned on is `erasableSyntaxOnly`, so Node 22.18+ could take the place of `ts-node`. https://nodejs.org/en/blog/release/v22.18.0

The ESM code is unuseable by Node.js in the non-standard `"module"` field where only a bundler will see it. https://nodejs.org/api/packages.html#conditional-exports And Node.js has 2 separate parsers, so it needs CJS...

### Bug Report Checklist - [x] I have read and agree to Mocha's [Code of Conduct](https://github.com/mochajs/mocha/blob/main/.github/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/mochajs/mocha/blob/main/.github/CONTRIBUTING.md) - [x] I have searched for [related issues](https://github.com/mochajs/mocha/issues?q=is%3Aissue) and [issues with...

type: bug
status: in triage

#5357 seems to be moving towards an ESM-first Mocha 12+. Should the `require` and `exports` interfaces be removed, renamed, or have their documentation updated to demonstrate how to use them...

https://github.com/ipfs/ipfs-desktop/blob/d32bf9aa54cd6882ced401c62cf4db62b082108c/package.json#L65 `standard` v16 is currently in use, which uses the ancient eslint v7. `standard` v17 is out, but it still uses eslint v8, so it'd probably be better to just...

need/triage

[`proxyquire`](https://www.npmjs.com/package/proxyquire) hasn't had a release on NPM since 2019 and has no support for modern JavaScript modules/ESM https://github.com/thlorenz/proxyquire/issues/217#issuecomment-1143690177. Node.js has this built-in https://nodejs.org/api/test.html#mockmodulespecifier-options

need/triage

This was only used for a span of about 1 month in 2020. https://github.com/Daninet/hash-wasm/commits/v4.4.0/webpack/ Missed in 54f568aa04e9aba9e66374de306aa352ea4b0fee

`"module"` is a non-standard field that Node.js doesn't read. It uses `"exports"`. ESM code also needs the `.mjs` file extension. https://nodejs.org/api/packages.html#determining-module-system

If a specific version of a package is required, applications are often forced to install the same package twice.

discussion