From 6d9fd35805674eeacad6cece4e42d7c70ddde601 Mon Sep 17 00:00:00 2001 From: MayaWolf Date: Tue, 17 Oct 2017 22:28:26 +0200 Subject: [PATCH] Fix build process --- electron/application.json | 2 +- electron/webpack.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/electron/application.json b/electron/application.json index f6f17b4..868317c 100644 --- a/electron/application.json +++ b/electron/application.json @@ -6,7 +6,7 @@ "main": "main.js", "license": "MIT", "devDependencies": { - "electron": "^1.8.0" + "electron": "^1.8.1" }, "dependencies": { "keytar": "^4.0.4", diff --git a/electron/webpack.config.js b/electron/webpack.config.js index 3593836..184dcec 100644 --- a/electron/webpack.config.js +++ b/electron/webpack.config.js @@ -75,6 +75,7 @@ module.exports = function(env) { const themes = fs.readdirSync(themesDir); const cssOptions = {use: [{loader: 'css-loader', options: {minimize: dist}}, 'less-loader']}; for(const theme of themes) { + if(!theme.endsWith('.less')) continue; const absPath = path.join(themesDir, theme); config.entry.chat.push(absPath); const plugin = new ExtractTextPlugin('themes/' + theme.slice(0, -5) + '.css');