From 670913698776e09b7ff44f44ccdcf56303d79be3 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 6 Sep 2018 13:58:40 +0300 Subject: merge legacy www --- juick-server/webpack.config.js | 53 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 juick-server/webpack.config.js (limited to 'juick-server/webpack.config.js') diff --git a/juick-server/webpack.config.js b/juick-server/webpack.config.js new file mode 100644 index 00000000..6605a1ca --- /dev/null +++ b/juick-server/webpack.config.js @@ -0,0 +1,53 @@ +const webpack = require("webpack") +const MiniCssExtractPlugin = require("mini-css-extract-plugin") +const StyleLintPlugin = require('stylelint-webpack-plugin') + +module.exports = { + devtool: 'source-map', + entry: { + "scripts": [ + __dirname + "/src/main/assets/scripts.js", + require.resolve('evil-icons/assets/evil-icons.js') + ], + "style": [ + __dirname + "/src/main/assets/style.css", + require.resolve('evil-icons/assets/evil-icons.css'), + require.resolve('awesomplete/awesomplete.css') + ] + }, + output: { + path: __dirname + "/src/main/resources/static", + filename: "[name].js" + }, + module: { + rules: [ + { test: /\.jsx?$/, loader: 'eslint-loader', enforce: 'pre', exclude: /node_modules/, options: { failOnWarning: false, failOnError: true, fix: true } }, + { test: /\.js$/, loader: 'babel-loader' }, + { + test: /\.css$/, + use: [ + MiniCssExtractPlugin.loader, + { + loader: "css-loader" + }, + { + loader: "postcss-loader", options: { + plugins: () => [ + require('autoprefixer')({ + browsers: 'last 4 versions, > 1%, ie >= 8' + }) + ] + } + } + ] + }, + { test: /\.png$/, loader: "url-loader?limit=10000000000" }, + { test: /\.svg$/, loader: "url-loader?limit=10000000000" } + ] + }, + plugins: [ + new StyleLintPlugin({ configFile: '.stylelintrc.json', context: 'src/main/assets', files: ['**/*.css'], emitErrors: false }), + new MiniCssExtractPlugin({ filename: "style.css", allChunks: true }) + ], + +} -- cgit v1.2.3