Skip to content

Commit

Permalink
fix: update html-plugin, remove extract-text-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mhheise committed Mar 15, 2018
1 parent 4cf1d3c commit b1968d8
Show file tree
Hide file tree
Showing 12 changed files with 8,250 additions and 5,332 deletions.
2,483 changes: 1,137 additions & 1,346 deletions examples/minification/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/minification/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"devDependencies": {
"uglifyjs-webpack-plugin": "^1.2.1",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.6"
"webpack-cli": "^2.0.11"
},
"dependencies": {
"react": "^15.6.1",
Expand Down
2,852 changes: 1,678 additions & 1,174 deletions examples/performance/package-lock.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions examples/performance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
"babel-preset-react": "^6.24.1",
"eslint": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"html-webpack-plugin": "^3.0.6",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.6",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.0.0"
},
"dependencies": {
Expand Down
2,760 changes: 1,439 additions & 1,321 deletions examples/recommended/package-lock.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions examples/recommended/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
"build": "webpack"
},
"devDependencies": {
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"html-webpack-plugin": "^3.0.6",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.6",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.0.0"
},
"dependencies": {
Expand Down
20 changes: 10 additions & 10 deletions experiments/inherit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --history-api-fallback --config ./webpack.config.js",
"build": "webpack --config ./webpack.config.js"
"start": "webpack-dev-server --history-api-fallback",
"build": "webpack"
},
"devDependencies": {
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"webpack": "^3.1.0",
"webpack-dev-server": "2.5.0"
"css-loader": "^0.28.10",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.3",
"url-loader": "^1.0.1",
"webpack": "^4.0.0",
"webpack-dev-server": "^3.0.0"
},
"dependencies": {
"font-awesome": "^4.7.0",
Expand Down
2 changes: 1 addition & 1 deletion experiments/inherit/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const path = require('path');
const AutoDllPlugin = require('../../lib');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
// const UglifyJsPlugin = require('uglifyjs-webpack-plugin');

module.exports = {
context: __dirname,
Expand Down
Loading

0 comments on commit b1968d8

Please sign in to comment.