Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
th0r committed Jan 30, 2018
1 parent 4a19172 commit 8bdc420
Show file tree
Hide file tree
Showing 3 changed files with 2,328 additions and 1,061 deletions.
52 changes: 26 additions & 26 deletions package.json
Expand Up @@ -23,8 +23,8 @@
"build": "gulp build",
"npm-publish": "npm run lint && npm run build && npm test && npm publish",
"lint": "eslint --ext js,jsx .",
"test": "mocha --compilers js:babel-core/register",
"test-dev": "mocha --watch --compilers js:babel-core/register"
"test": "mocha --exit --require babel-core/register",
"test-dev": "mocha --watch --require babel-core/register"
},
"files": [
"public",
Expand All @@ -33,48 +33,48 @@
"views"
],
"dependencies": {
"acorn": "^5.1.1",
"bfj-node4": "^4.2.4",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"filesize": "^3.5.9",
"gzip-size": "^3.0.0",
"acorn": "^5.3.0",
"bfj-node4": "^5.2.0",
"chalk": "^2.3.0",
"commander": "^2.13.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"filesize": "^3.5.11",
"gzip-size": "^4.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"opener": "^1.4.3",
"ws": "^4.0.0"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.4.0",
"chai": "3.5.0",
"chai-subset": "1.5.0",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"chai-subset": "1.6.0",
"classnames": "2.2.5",
"css-loader": "0.28.1",
"del": "2.2.2",
"css-loader": "0.28.9",
"del": "3.0.0",
"eslint": "3.19.0",
"eslint-plugin-react": "7.0.0",
"exports-loader": "0.6.4",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-plumber": "1.1.0",
"gulp-plumber": "1.2.0",
"gulp-util": "3.0.8",
"gulp-watch": "4.3.11",
"mocha": "3.3.0",
"gulp-watch": "5.0.0",
"mocha": "5.0.0",
"nightmare": "2.10.0",
"preact": "8.1.0",
"sinon": "2.2.0",
"preact": "8.2.7",
"sinon": "4.2.2",
"stream-combiner2": "1.1.1",
"style-loader": "0.17.0",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
"style-loader": "0.20.1",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.1"
},
"keywords": [
"webpack",
Expand Down
6 changes: 3 additions & 3 deletions test/webpack-configs.js
Expand Up @@ -51,7 +51,7 @@ describe('Webpack config', function () {

await expectValidReport({
parsedSize: 445,
gzipSize: 179
gzipSize: 178
});
});

Expand Down Expand Up @@ -81,8 +81,8 @@ async function expectValidReport(opts) {
reportFilename = 'report.html',
bundleLabel = 'bundle.js',
statSize = 141,
parsedSize = 2983,
gzipSize = 820
parsedSize = 2821,
gzipSize = 770
} = opts || {};

expect(fs.existsSync(`${__dirname}/output/${bundleFilename}`)).to.be.true;
Expand Down

0 comments on commit 8bdc420

Please sign in to comment.