File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 32
32
},
33
33
"homepage" : " https://github.com/jantimon/html-webpack-harddisk-plugin" ,
34
34
"devDependencies" : {
35
- "@types/webpack" : " ^4.4.12 " ,
35
+ "@types/webpack" : " ^4.4.16 " ,
36
36
"commitizen" : " 3.0.2" ,
37
37
"cz-conventional-changelog" : " 2.1.0" ,
38
- "html-webpack-plugin" : " ^4.0.0-beta.1 " ,
39
- "jasmine" : " ^2.4.1 " ,
40
- "memory-fs" : " ^0.3.0 " ,
41
- "rimraf" : " ^2.5 .2" ,
42
- "semistandard" : " ^7 .0.5 " ,
38
+ "html-webpack-plugin" : " ^3.2.0 " ,
39
+ "jasmine" : " ^3.2.0 " ,
40
+ "memory-fs" : " ^0.4.1 " ,
41
+ "rimraf" : " ^2.6 .2" ,
42
+ "semistandard" : " ^12 .0.1 " ,
43
43
"standard-version" : " 4.4.0" ,
44
44
"webpack" : " ^4.20.2"
45
45
},
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ var path = require('path');
3
3
var fs = require ( 'fs' ) ;
4
4
var MemoryFileSystem = require ( 'memory-fs' ) ;
5
5
var webpack = require ( 'webpack' ) ;
6
- var rm_rf = require ( 'rimraf' ) ;
6
+ var rimraf = require ( 'rimraf' ) ;
7
7
var HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
8
8
var HtmlWebpackHarddiskPlugin = require ( '../' ) ;
9
9
10
10
var OUTPUT_DIR = path . join ( __dirname , '../dist' ) ;
11
11
12
12
describe ( 'HtmlWebpackHarddiskPlugin' , function ( ) {
13
13
beforeEach ( function ( done ) {
14
- rm_rf ( OUTPUT_DIR , done ) ;
14
+ rimraf ( OUTPUT_DIR , done ) ;
15
15
} ) ;
16
16
17
17
it ( 'should not generate files by default' , function ( done ) {
You can’t perform that action at this time.
0 commit comments