-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #196 from hildjj/update-deps
Update deps
- Loading branch information
Showing
124 changed files
with
23,458 additions
and
3,286 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,5 @@ typings.json | |
shrinkwrap.yaml | ||
npm-debug.log | ||
t.js | ||
pnpm-lock.yaml | ||
yarn.lock | ||
yarn-error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
'use strict' | ||
'use strict'; | ||
|
||
module.exports = { | ||
reject: [ | ||
"marked", | ||
"p-event", | ||
] | ||
} | ||
'json-text-sequence', | ||
'marked', | ||
'nofilter', | ||
'p-event', | ||
'rimraf', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
engine-strict=true | ||
package-lock=false | ||
strict-peer-dependencies=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
'use strict' | ||
'use strict'; | ||
|
||
const path = require('path') | ||
const path = require('node:path'); | ||
const config = { | ||
files: ['./packages/*/test/*.ava.js'], | ||
timeout: '5m', | ||
} | ||
}; | ||
|
||
if (process.env.CBOR_PACKAGE) { | ||
const NODE_PATH = [ | ||
path.resolve(__dirname, 'packages', 'cbor', 'node_modules'), | ||
] | ||
]; | ||
if (process.env.NODE_PATH) { | ||
NODE_PATH.push(...process.env.NODE_PATH.split(path.delimiter)) | ||
NODE_PATH.push(...process.env.NODE_PATH.split(path.delimiter)); | ||
} | ||
config.environmentVariables = { | ||
NODE_PATH: NODE_PATH.join(path.delimiter), | ||
} | ||
}; | ||
} | ||
module.exports = config | ||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import ava from '@cto.af/eslint-config/ava.js'; | ||
import base from '@cto.af/eslint-config'; | ||
import globals from '@cto.af/eslint-config/globals.js'; | ||
import markdown from '@cto.af/eslint-config/markdown.js'; | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'packages/browserify-demo/dist/**', | ||
'packages/cbor-bigdecimal/dist/**', | ||
'packages/cbor-web/dist/**', | ||
'packages/plain-demo/dist/**', | ||
'packages/webpack-demo/dist/**', | ||
'**/*.d.ts', | ||
], | ||
}, | ||
...base, | ||
...markdown, | ||
...ava, | ||
{ | ||
files: [ | ||
'packages/cbor/lib/**', | ||
'packages/cbor/test/**', | ||
'packages/browserify-demo/src/**', | ||
'packages/webpack-demo/src/**', | ||
], | ||
rules: { | ||
'n/prefer-node-protocol': 'off', | ||
}, | ||
}, | ||
{ | ||
files: [ | ||
'packages/cbor-cli/**', | ||
], | ||
rules: { | ||
'no-console': 'off', | ||
}, | ||
}, | ||
{ | ||
files: [ | ||
'packages/cbor-web/lib/**', | ||
'packages/parcel-demo/src/**', | ||
], | ||
languageOptions: { | ||
sourceType: 'module', | ||
globals: globals.browser, | ||
}, | ||
rules: { | ||
'n/prefer-node-protocol': 'off', | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.