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');