blob: e34afa476272deab82d960f5cda6ee0fed2920f5 [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: [
37 'html'
38 ]
39 }
40 ]
41 },
42 plugins: [
43 new webpack.optimize.OccurrenceOrderPlugin(),
44 new webpack.NoErrorsPlugin(),
45 new HtmlWebpackPlugin({
46 template: conf.path.src('index.html')
47 }),
Matteo Scandolod819c922016-12-02 14:06:14 -080048 new webpack.optimize.UglifyJsPlugin({
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080049 compress: {unused: true, dead_code: true, warnings: false}, // eslint-disable-line camelcase
50 mangle: false // NOTE mangling was breaking the build
Matteo Scandolod819c922016-12-02 14:06:14 -080051 }),
52 new ExtractTextPlugin('index-[contenthash].css'),
53 new webpack.optimize.CommonsChunkPlugin({name: 'vendor'})
54 ],
55 postcss: () => [autoprefixer],
56 output: {
57 path: path.join(process.cwd(), conf.paths.dist),
58 filename: '[name]-[hash].js'
59 },
60 resolve: {
61 extensions: [
62 '',
63 '.webpack.js',
64 '.web.js',
65 '.js',
66 '.ts'
67 ]
68 },
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080069 entry: {
70 app: `./${conf.path.src('index')}`,
71 vendor: Object.keys(pkg.dependencies)
72 },
Matteo Scandolod819c922016-12-02 14:06:14 -080073 ts: {
74 configFileName: 'tsconfig.json'
75 },
76 tslint: {
77 configuration: require('../tslint.json')
78 }
79};