Jacob Ley
Jacob Ley
### Description of the Change Handle canonicalizing `Module`, prevent implicit stringification failures ### Alternate Designs * Have `canonicalType` return `'object'` for modules (not chosen as that _could_ be breaking, not...
### Prerequisites - [x] Checked that your issue hasn't already been filed by cross-referencing [issues with the `faq` label](https://github.com/mochajs/mocha/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Afaq%20) - [x] Checked next-gen ES issues and syntax problems by using...
## Issue Creation Checklist - [x] I have read the [contribution guidelines](https://github.com/sequelize/sequelize/blob/main/CONTRIBUTING.md) ## Bug Description ### SSCCE https://github.com/sequelize/sequelize/pull/14469 See failing tests ### What do you expect to happen? When `ignoreDuplicates=true`...
`prefer-native-coercion-functions` is used to simplify methods like `filter` that are simply trying to find truthy values. However the native type castings do not provide any typescript assertions, so the resulting...
I recently started working on a rush monorepo, that basically has the setup: ``` rush.json /lib /lib/src/index.js -- export const abc = 123 /apps /apps/src/index.js -- import { abc }...
#### Use-cases My personal case is I have a `tfe_workspace` for every microservice+environment combination. Workspaces are dependent on each other and across environments. An example section of my `.tf` file...
Typescript recently announced they will support new file extensions `.cts` and `.mts`. https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#esm-nodejs These will transpile to `.cjs` and `.mjs` files respectively. However, it seems that `nyc`/`instanbul` do not properly...
**What issue does this pull request resolve?** https://github.com/ajv-validator/ajv/issues/1950 **What changes did you make?** * Extra tests to prove behavior * Tweak keyword execution order to ensure properties -> subschema *...
**What version of Ajv are you using? Does the issue happen if you use the latest version?** 8.11.0 **Ajv options object** ```javascript { strict: true, strictRequired: true } ``` **JSON...
**What issue does this pull request resolve?** resolves https://github.com/ajv-validator/ajv/issues/1935 **What changes did you make?** Add `number` to `includesType` check during `strictTypes` validation. **Is there anything that requires more attention while...