aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-06-20 08:55:22 +0200
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 09:42:15 +0100
commitb3198b2a0407de071b14290af2415169b9198b9f (patch)
tree24f1143af8babd8df26cc5df1de3c95f36d03df8
parent337c6ae29cf58605c3c6c92f27324a17cc80e634 (diff)
FUCNT Add zip step
-rw-r--r--package.json3
-rw-r--r--webpack.config.js8
2 files changed, 10 insertions, 1 deletions
diff --git a/package.json b/package.json
index 37bd01b..1c221bc 100644
--- a/package.json
+++ b/package.json
@@ -32,7 +32,8 @@
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
- "webpack-dev-server": "^3.7.2"
+ "webpack-dev-server": "^3.7.2",
+ "zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"@iconfu/svg-inject": "^1.2.3",
diff --git a/webpack.config.js b/webpack.config.js
index ec29d07..157b8be 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -4,6 +4,8 @@ const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCSSExtractPlugin = require('mini-css-extract-plugin');
const CopyPlugin = require('copy-webpack-plugin');
+const ZipPlugin = require('zip-webpack-plugin');
+
module.exports = {
mode: 'production',
@@ -40,6 +42,12 @@ module.exports = {
new MiniCSSExtractPlugin({
filename: 'app.css',
path: __dirname + '/dist'
+ }),
+ new ZipPlugin({
+ path: __dirname + '/dist',
+ filename: 'homescreen',
+ extension: 'wgt',
+ exclude: []
})
],
module: {