aboutsummaryrefslogtreecommitdiff
path: root/juick-www/webpack.config.js
blob: 383c62a557c55f7cdf14feb7fbad4a567e7cffe7 (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
var webpack = require("webpack")
var globby = require("globby")
var ExtractTextPlugin = require("extract-text-webpack-plugin")
var StyleLintPlugin = require('stylelint-webpack-plugin')
module.exports = {
    devtool: 'source-map',
    entry: {
        "scripts" : globby.sync([
            __dirname + "/src/main/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: {
        loaders: [
            { test: /\.jsx?$/, loader: 'eslint-loader', enforce: 'pre', exclude: /node_modules/, options: { failOnWarning: false, failOnError: true }},
            { test: /\.js$/, loader: 'babel-loader', query: { presets: ['es2015'] }},
            { test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) },
            { test: /\.png$/, loader: "url-loader?limit=10000000000" },
            { test: /\.svg$/, loader: "url-loader?limit=10000000000" }
        ]
    },
    plugins: [
        new StyleLintPlugin({ configFile: '.stylelintrc.json', context: 'src/main/static', files: ['**/*.css'], emitErrors: false }),
        new ExtractTextPlugin({ filename: "style.css", allChunks: true })
    ],

}