mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
Remove webpack-cleanup-plugin
This commit is contained in:
parent
56fc211628
commit
41f50f9218
2 changed files with 1 additions and 4 deletions
|
@ -83,7 +83,6 @@
|
||||||
"socket.io-client": "2.0.4",
|
"socket.io-client": "2.0.4",
|
||||||
"stylelint": "8.2.0",
|
"stylelint": "8.2.0",
|
||||||
"stylelint-config-standard": "17.0.0",
|
"stylelint-config-standard": "17.0.0",
|
||||||
"webpack": "3.8.1",
|
"webpack": "3.8.1"
|
||||||
"webpack-cleanup-plugin": "0.5.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
const webpack = require("webpack");
|
const webpack = require("webpack");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
const CopyPlugin = require("copy-webpack-plugin");
|
const CopyPlugin = require("copy-webpack-plugin");
|
||||||
const CleanupPlugin = require("webpack-cleanup-plugin");
|
|
||||||
|
|
||||||
// ********************
|
// ********************
|
||||||
// Common configuration
|
// Common configuration
|
||||||
|
@ -62,7 +61,6 @@ const config = {
|
||||||
json3: "JSON", // socket.io uses json3.js, but we do not target any browsers that need it
|
json3: "JSON", // socket.io uses json3.js, but we do not target any browsers that need it
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new CleanupPlugin(),
|
|
||||||
new CopyPlugin([
|
new CopyPlugin([
|
||||||
{
|
{
|
||||||
from: "./node_modules/font-awesome/fonts/fontawesome-webfont.woff*",
|
from: "./node_modules/font-awesome/fonts/fontawesome-webfont.woff*",
|
||||||
|
|
Loading…
Reference in a new issue