Skip to content

Commit

Permalink
Upgrade devDependencies
Browse files Browse the repository at this point in the history
Update AVA config (AVA upgrade from v5 to v6).
  • Loading branch information
pokusew committed Dec 23, 2024
1 parent 32eed43 commit 9c35b92
Show file tree
Hide file tree
Showing 3 changed files with 784 additions and 577 deletions.
46 changes: 24 additions & 22 deletions ava.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,28 @@ module.exports = {
files: [
'./test/**/*',
],
ignoredByWatcher: [
//
// some files and directories are ignored by default,
// see https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md#ignoring-changes
//
// note:
// AVA dependency tracking (https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md#dependency-tracking)
// currently does not work with native ES modules.
// See
// https://github.com/avajs/ava/issues/2388
// https://github.com/avajs/ava/pull/3123
// https://github.com/avajs/ava/issues/2905
//
// use the following to debug:
// DEBUG=ava:watcher npx ava --watch
// or
// DEBUG=ava:* npx ava --watch
//
'./.idea/',
'./temp/',
'./dist/',
],
watchMode: {
ignoreChanges: [
//
// some files and directories are ignored by default,
// see https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md#ignoring-changes
//
// note:
// AVA dependency tracking (https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md#dependency-tracking)
// currently does not seem to work. However, since AVA v6 it should work.
// See
// https://github.com/avajs/ava/issues/2388
// https://github.com/avajs/ava/pull/3123
// https://github.com/avajs/ava/issues/2905
//
// use the following to debug:
// DEBUG=ava:watcher npx ava --watch
// or
// DEBUG=ava:* npx ava --watch
//
'./.idea/',
'./temp/',
'./dist/',
],
},
};
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@
"@pokusew/pcsclite": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/register": "^7.22.15",
"ava": "^5.3.1",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/register": "^7.25.9",
"ava": "^6.2.0",
"chalk": "^4.0.0",
"cross-env": "^7.0.3",
"mock-require": "^3.0.3",
"triple-beam": "^1.4.1",
"winston": "^3.11.0"
"winston": "^3.17.0"
}
}
Loading

0 comments on commit 9c35b92

Please sign in to comment.