From b0277dd6c7555408c97cb107b0131c6ac1120013 Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Mon, 1 Jan 2018 09:28:58 +0100 Subject: [PATCH] icon.xcf is not bundled anymore in .zip --- template/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/webpack.config.js b/template/webpack.config.js index 5262191c..6f20a762 100644 --- a/template/webpack.config.js +++ b/template/webpack.config.js @@ -60,7 +60,7 @@ const config = { filename: '[name].css' }), new CopyWebpackPlugin([ - {from: 'icons', to: 'icons'}, + {from: 'icons', to: 'icons', ignore: ['icon.xcf']}, {from: 'popup/popup.html', to: 'popup/popup.html'}, {from: 'manifest.json', to: 'manifest.json'} ]),