aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/webpack.config.js
blob: acefc658160b5239ea6144f25e9e2cc1a6e77ef1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
    },
}