dynst
dynst
### Ethers Version 6.15.0 ### Search Terms _No response_ ### Describe the Problem https://github.com/ethers-io/ethers.js/blob/9fd9d41d017a5e3b329aca47c79786e69cd40b99/package.json#L11-L19 All of the dependencies and devDependencies use an exact version, with no caret `^` to allow...
### Ethers Version 6.15.0 ### Search Terms _No response_ ### Describe the Problem https://github.com/ethers-io/ethers.js/blob/9fd9d41d017a5e3b329aca47c79786e69cd40b99/package.json#L38-L39 Running Node.js v20.18.0, when you `import` a file that ends in `.js`, and the nearest package.json...
ESM code doesn't work when `import` statements don't contain the full file path, extension included. Rollup was re-transpiling it in the 2nd step, so that was fixing it up and...
5.5+ raises a new type error.
https://eslint.org/docs/latest/rules/no-unused-vars#caughterrors The only noticeable change is that the no-unused-vars lint now warns about unused errors in `catch (e)` statements by default.
https://github.com/expressjs/express/blob/54af593b739ea44674e4a445efa15b8024f093da/lib/request.js#L17 Reduce redundancy by replacing lines like this with a destructuring assignment, and consolidate the multiple references to `exports` into just one or two, assigning all the exported values in...
https://github.com/101arrowz/fflate/blob/f7873560ad229c22c4b23b06c6a3806ffde77569/package.json#L5-L9 `"main"` is the only field there that Node.js natively understands. For an ESM codebase to `import` ESM code there needs to be an `"exports"` field (or I guess dropping...
https://github.com/protobufjs/protobuf.js/blob/f42297b29d15c8e0382744a83f5147a1aa978f42/cli/targets/static-module.js#L21 `pbjs -w es6` will generate an `import` statement that simply fails, because it's ES6 not CommonJS. It can't import a file with the extension omitted, it has to import...
```sh pbts --name types file.mjs -o file.d.ts ``` just writes 1 line to file.d.ts: `There are no input files to process.` But these are fairly standard JavaScript file extensions that...
https://github.com/cosmos/cosmos-sdk/pull/22714#issuecomment-2514766387 > If moving away from textual is an already established direction where is that documented? In a quick issue search I didn't find anything. If this ADR isn't on...