File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -55,15 +55,6 @@ module.exports = {
55
55
delete opts . clientProgress ;
56
56
} ,
57
57
} ,
58
- {
59
- name : 'hot-only' ,
60
- type : Boolean ,
61
- description : 'Do not refresh page if HMR fails.' ,
62
- processor ( opts ) {
63
- opts . hot = 'only' ;
64
- delete opts . hotOnly ;
65
- } ,
66
- } ,
67
58
{
68
59
name : 'setup-exit-signals' ,
69
60
type : Boolean ,
Original file line number Diff line number Diff line change @@ -26,8 +26,9 @@ describe('CLI', () => {
26
26
. catch ( done ) ;
27
27
} ) ;
28
28
29
- it ( '--hot-only' , ( done ) => {
30
- testBin ( '--hot-only' )
29
+ // Enable after new webpack-cli release
30
+ it . skip ( '--hot only' , ( done ) => {
31
+ testBin ( '--hot only' )
31
32
. then ( ( output ) => {
32
33
expect ( output . exitCode ) . toEqual ( 0 ) ;
33
34
expect ( output . stdout ) . toContain ( '/hot/only-dev-server' ) ;
You can’t perform that action at this time.
0 commit comments