We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdd10fa commit 1e7accaCopy full SHA for 1e7acca
test/cli.test.js
@@ -10,8 +10,8 @@ const runDevServer = require('./helpers/run-webpack-dev-server');
10
describe('CLI Dependencies', () => {
11
it('should lock down certain dependencies', () => {
12
const yargs = pkg.dependencies.yargs;
13
- // yargs needs to be locked down to 6.6.0
14
- semver.satisfies(yargs, '6.6.0');
+ // yargs needs to be locked down to 9.0.1, since that is what webpack-cli is also doing
+ assert(semver.satisfies(yargs, '9.0.1'));
15
});
16
17
0 commit comments