From 7a2ea130863bb095fa925ec0c7576b076490f0cf Mon Sep 17 00:00:00 2001 From: Alexander Alexeev Date: Sun, 20 Nov 2016 02:05:23 +0700 Subject: init juick-spring-web project --- juick-spring-www/webpack.config.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 juick-spring-www/webpack.config.js (limited to 'juick-spring-www/webpack.config.js') diff --git a/juick-spring-www/webpack.config.js b/juick-spring-www/webpack.config.js new file mode 100644 index 00000000..acefc658 --- /dev/null +++ b/juick-spring-www/webpack.config.js @@ -0,0 +1,37 @@ +var webpack = require("webpack") +var globby = require("globby") +var ExtractTextPlugin = require("extract-text-webpack-plugin") +module.exports = { + devtool: 'source-map', + entry: { + "scripts" : globby.sync([ + __dirname + "/src/main/webapp/static/*.*", + require.resolve('evil-icons/assets/evil-icons.css'), + require.resolve('evil-icons/assets/evil-icons.js') + ]) + }, + output: { + path: __dirname + "/src/main/webapp", + filename: "[name].js" + }, + module: { + preLoaders: [ + { test: /\.jsx?$/, loader: 'eslint', exclude: /node_modules/ }, + { test: /\.css$/, loader: 'csslint?failOnWarning=false', exclude: /node_modules/ } + ], + loaders: [ + { test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader") }, + { test: /\.png$/, loader: "url-loader?limit=10000000000" }, + { test: /\.svg$/, loader: "url-loader?limit=10000000000" } + ] + }, + plugins: [ + new ExtractTextPlugin("style.css", { + allChunks: true + }) + ], + eslint: { + failOnWarning: false, + failOnError: true + }, +} \ No newline at end of file -- cgit v1.2.3