Skip to content

Commit

Permalink
fix: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jantimon committed Oct 15, 2018
1 parent a7379f1 commit 792d555
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
},
"homepage": "https://github.com/jantimon/html-webpack-harddisk-plugin",
"devDependencies": {
"@types/webpack": "^4.4.12",
"@types/webpack": "^4.4.16",
"commitizen": "3.0.2",
"cz-conventional-changelog": "2.1.0",
"html-webpack-plugin": "^4.0.0-beta.1",
"jasmine": "^2.4.1",
"memory-fs": "^0.3.0",
"rimraf": "^2.5.2",
"semistandard": "^7.0.5",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.2.0",
"memory-fs": "^0.4.1",
"rimraf": "^2.6.2",
"semistandard": "^12.0.1",
"standard-version": "4.4.0",
"webpack": "^4.20.2"
},
Expand Down
4 changes: 2 additions & 2 deletions spec/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ var path = require('path');
var fs = require('fs');
var MemoryFileSystem = require('memory-fs');
var webpack = require('webpack');
var rm_rf = require('rimraf');
var rimraf = require('rimraf');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var HtmlWebpackHarddiskPlugin = require('../');

var OUTPUT_DIR = path.join(__dirname, '../dist');

describe('HtmlWebpackHarddiskPlugin', function () {
beforeEach(function (done) {
rm_rf(OUTPUT_DIR, done);
rimraf(OUTPUT_DIR, done);
});

it('should not generate files by default', function (done) {
Expand Down

0 comments on commit 792d555

Please sign in to comment.