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 7430648 commit 3d3d912Copy full SHA for 3d3d912
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 9.0.1, since that is what webpack-cli is also doing
14
- assert(semver.satisfies(yargs, '9.0.1'));
+ // yargs needs to be locked down to 11.0.0, since that is what webpack-cli is also doing
+ assert(semver.satisfies(yargs, '11.0.0'));
15
});
16
17
0 commit comments