File tree 2 files changed +0
-11
lines changed
2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change 74
74
"mocha" : " ^5.2.0" ,
75
75
"mocha-sinon" : " ^2.0.0" ,
76
76
"nyc" : " ^12.0.2" ,
77
- "semver" : " ^5.4.1" ,
78
77
"should" : " ^13.2.0" ,
79
78
"sinon" : " ^6.1.5" ,
80
79
"standard-version" : " ^4.4.0" ,
Original file line number Diff line number Diff line change 3
3
const assert = require ( 'assert' ) ;
4
4
const path = require ( 'path' ) ;
5
5
const execa = require ( 'execa' ) ;
6
- const semver = require ( 'semver' ) ;
7
- const pkg = require ( '../package.json' ) ;
8
6
const runDevServer = require ( './helpers/run-webpack-dev-server' ) ;
9
7
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 11.0.0, since that is what webpack-cli is also doing
14
- assert ( semver . satisfies ( yargs , '11.0.0' ) ) ;
15
- } ) ;
16
- } ) ;
17
-
18
8
describe ( 'CLI' , ( ) => {
19
9
it ( '--progress' , ( done ) => {
20
10
runDevServer ( '--progress' )
You can’t perform that action at this time.
0 commit comments