From 93c8d1a052753584a4f55118f6753a952a3089a9 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 24 Aug 2018 14:48:50 +0300 Subject: drop www files --- juick-www/webpack.config.js | 53 --------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 juick-www/webpack.config.js (limited to 'juick-www/webpack.config.js') diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js deleted file mode 100644 index 457ab41a..00000000 --- a/juick-www/webpack.config.js +++ /dev/null @@ -1,53 +0,0 @@ -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', query: { presets: ['env'] } }, - { - 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