Pelle Wessman

Results 694 comments of Pelle Wessman
trafficstars

Apparently 14.18 because of `node:path`: https://github.com/isaacs/node-glob/commit/57f5551d92d8bc05a903bcc2601045e4f5b7fa5a 14.17 was set here: https://github.com/isaacs/node-glob/commit/03b9bcaa3b42b28f02139c27e15d1610ff9da4f0 Not sure why `14.17` was picked, other than that it was requested here: https://hachyderm.io/@lukekarrys/109932512524686599

Its used in two places in mocha: https://github.com/mochajs/mocha/blob/e16d25db743e6023443a5b1d9f36ac0b26c2e72c/lib/cli/lookup-files.js#L78 And: https://github.com/mochajs/mocha/blob/e16d25db743e6023443a5b1d9f36ac0b26c2e72c/lib/cli/lookup-files.js#L90-L93

@einsteinsfool We will bump to >=18 real soon as we prepare for a new major release, to avoid issues like these, so no worries on using a dependency that requires...

PR about the bump of engine in Mocha 11: https://github.com/mochajs/mocha/pull/5216

@jakebailey Can you elaborate? If it's a problem that we drop Node 14 and 16, then we might have to reconsider #5216

```js import neostandard from 'neostandard'; export default neostandard({ semi: true, // Enforce semicolons (like semistandard) }); ``` `neostandard` supports `semistandard` style out of the box, so only the one override...

Real life example from neostandard: https://github.com/neostandard/neostandard/blob/08ae5469c71def357f0202fed2be9b83f62efc5a/lib/configs/base.js#L5 > Should we go all in with `checkJs: true`, basically going full JavaScript+JSDoc-as-TypeScript? I have a PR for that in another project, so I’m...

Agree @brettz9 πŸ‘ And I think @scagood is also interested in this topic :)

Why are you accessing `Promise.prototype`? πŸ€”