Skip to content

Commit

Permalink
chore(deps-dev): bump @rollup/plugin-commonjs from 25.0.8 to 26.0.1 &…
Browse files Browse the repository at this point in the history
… c8 from 9.1.0 to 10.0.0
  • Loading branch information
AsifNawaz-cnic committed Jun 11, 2024
1 parent 28bd0a5 commit 3deea58
Show file tree
Hide file tree
Showing 3 changed files with 801 additions and 535 deletions.
23 changes: 9 additions & 14 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const globals = require("globals");
const recommended = require("@eslint/js").configs.recommended;
const globals = require('globals');
const recommended = require('@eslint/js').configs.recommended;

module.exports = {
...recommended,
Expand All @@ -8,21 +8,16 @@ module.exports = {
sourceType: 'module',
globals: {
...globals.es6,
...globals.node
...globals.node,
},
},
...{
files: [ 'test/*.js' ],
files: ['test/*.js'],
languageOptions: {
globals: {
...globals.mocha,
}
}
...globals.mocha,
},
},
},
ignores: [
"dist",
"test/index.bundle.js",
"test/index.mjs",
"test/mocha.css"
]
};
ignores: ['dist', 'test/index.bundle.js', 'test/index.mjs', 'test/mocha.css'],
};
Loading

0 comments on commit 3deea58

Please sign in to comment.