Skip to content

Commit

Permalink
chore: update typeson, typeson-registry and devDeps.; switch to maint…
Browse files Browse the repository at this point in the history
…ained fork of json-file-reporter

BREAKING CHANGE:

Requires Node 14
  • Loading branch information
brettz9 committed Apr 30, 2022
1 parent 95c058c commit b41cdf5
Show file tree
Hide file tree
Showing 15 changed files with 4,023 additions and 4,029 deletions.
18 changes: 9 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const rules = {
'jsdoc/require-param-type': 0,
'jsdoc/check-types': 0,

'node/prefer-promises/fs': 0,
'n/prefer-promises/fs': 0,
'promise/prefer-await-to-callbacks': 0,
'promise/prefer-await-to-then': 0,
'unicorn/no-unsafe-regex': 0,
Expand Down Expand Up @@ -110,17 +110,17 @@ module.exports = {
'padded-blocks': ['off'],
'import/unambiguous': ['off'],
'import/no-unresolved': ['off'],
'node/no-missing-require': ['off'],
'node/no-missing-import': ['off'],
'node/no-unsupported-features/es-syntax': 'off'
'n/no-missing-require': ['off'],
'n/no-missing-import': ['off'],
'n/no-unsupported-features/es-syntax': 'off'
}
},
// @core-js-bundle can provide
{
files: ['src/**'],
rules: {
'node/no-unsupported-features/es-builtins': 'off',
'node/no-unsupported-features/es-syntax': 'off'
'n/no-unsupported-features/es-builtins': 'off',
'n/no-unsupported-features/es-syntax': 'off'
}
},
// May need to support a lower browser version for test/development files, but
Expand All @@ -145,9 +145,9 @@ module.exports = {
'object-shorthand': ['off'],
'prefer-destructuring': ['off'],
'require-unicode-regexp': ['off'],
'node/no-unsupported-features/es-syntax': 'off',
'node/no-unsupported-features/es-builtins': ['off'],
'node/no-unsupported-features/node-builtins': ['off'],
'n/no-unsupported-features/es-syntax': 'off',
'n/no-unsupported-features/es-builtins': ['off'],
'n/no-unsupported-features/node-builtins': ['off'],
'unicorn/prefer-add-event-listener': ['off'],
'unicorn/no-instanceof-array': ['off'],

Expand Down
4 changes: 2 additions & 2 deletions mocha-multi-reporters.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"mochajsJsonFileReporterReporterOptions": {
"esJoyJsonFileReporterReporterOptions": {
"output": "test-support/results/file-{id}.json"
},
"reporterEnabled": "spec, @mochajs/json-file-reporter"
"reporterEnabled": "spec, @es-joy/json-file-reporter"
}
Loading

0 comments on commit b41cdf5

Please sign in to comment.