blob: 9e0f3c93d4768ad309519a52bc963c7e78059c2a [file] [log] [blame]
Matteo Scandolod819c922016-12-02 14:06:14 -08001const webpack = require('webpack');
2const conf = require('./gulp.conf');
3const path = require('path');
4
5const HtmlWebpackPlugin = require('html-webpack-plugin');
6const ExtractTextPlugin = require('extract-text-webpack-plugin');
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08007const pkg = require('../package.json');
Matteo Scandolod819c922016-12-02 14:06:14 -08008const autoprefixer = require('autoprefixer');
9
10module.exports = {
11 module: {
12 loaders: [
13 {
14 test: /.json$/,
15 loaders: [
16 'json'
17 ]
18 },
19 {
20 test: /\.(css|scss)$/,
21 loaders: ExtractTextPlugin.extract({
22 fallbackLoader: 'style',
23 loader: 'css?minimize!sass!postcss'
24 })
25 },
26 {
27 test: /\.ts$/,
28 exclude: /node_modules/,
29 loaders: [
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080030 'ng-annotate',
Matteo Scandolod819c922016-12-02 14:06:14 -080031 'ts'
32 ]
33 },
34 {
35 test: /.html$/,
36 loaders: [
Matteo Scandolod62ea792016-12-22 14:02:28 -080037 'html?' + JSON.stringify({
38 attrs: ["img:src", "img:ng-src"]
39 })
Matteo Scandolod819c922016-12-02 14:06:14 -080040 ]
Matteo Scandolo266907e2016-12-20 13:41:42 -080041 },
42 {
43 test: /\.(png|woff|woff2|eot|ttf|svg|jpg|gif|jpeg)$/,
44 loader: 'url-loader?limit=100000'
Matteo Scandolod819c922016-12-02 14:06:14 -080045 }
46 ]
47 },
48 plugins: [
49 new webpack.optimize.OccurrenceOrderPlugin(),
50 new webpack.NoErrorsPlugin(),
51 new HtmlWebpackPlugin({
52 template: conf.path.src('index.html')
53 }),
Matteo Scandolod819c922016-12-02 14:06:14 -080054 new webpack.optimize.UglifyJsPlugin({
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080055 compress: {unused: true, dead_code: true, warnings: false}, // eslint-disable-line camelcase
56 mangle: false // NOTE mangling was breaking the build
Matteo Scandolod819c922016-12-02 14:06:14 -080057 }),
58 new ExtractTextPlugin('index-[contenthash].css'),
59 new webpack.optimize.CommonsChunkPlugin({name: 'vendor'})
60 ],
61 postcss: () => [autoprefixer],
62 output: {
63 path: path.join(process.cwd(), conf.paths.dist),
Matteo Scandolof4b85172017-01-11 09:56:02 -080064 publicPath: "/spa/", // enable apache proxying on the head node
Matteo Scandolod819c922016-12-02 14:06:14 -080065 filename: '[name]-[hash].js'
66 },
67 resolve: {
68 extensions: [
69 '',
70 '.webpack.js',
71 '.web.js',
72 '.js',
73 '.ts'
74 ]
75 },
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080076 entry: {
77 app: `./${conf.path.src('index')}`,
78 vendor: Object.keys(pkg.dependencies)
79 },
Matteo Scandolod819c922016-12-02 14:06:14 -080080 ts: {
81 configFileName: 'tsconfig.json'
82 },
83 tslint: {
84 configuration: require('../tslint.json')
85 }
86};