Update to webpack beta 25
[oweals/peertube.git] / client / config / webpack.common.js
1 const webpack = require('webpack')
2 const helpers = require('./helpers')
3
4 /*
5  * Webpack Plugins
6  */
7
8 const CopyWebpackPlugin = require('copy-webpack-plugin')
9 const HtmlWebpackPlugin = require('html-webpack-plugin')
10 const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin
11 const AssetsPlugin = require('assets-webpack-plugin')
12 const ContextReplacementPlugin = require('webpack/lib/ContextReplacementPlugin')
13 const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
14 const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin')
15 const WebpackNotifierPlugin = require('webpack-notifier')
16
17 /*
18  * Webpack Constants
19  */
20 const METADATA = {
21   title: 'PeerTube',
22   baseUrl: '/',
23   isDevServer: helpers.isWebpackDevServer()
24 }
25
26 /*
27  * Webpack configuration
28  *
29  * See: http://webpack.github.io/docs/configuration.html#cli
30  */
31 module.exports = function (options) {
32   var isProd = options.env === 'production'
33
34   return {
35
36     /*
37      * Cache generated modules and chunks to improve performance for multiple incremental builds.
38      * This is enabled by default in watch mode.
39      * You can pass false to disable it.
40      *
41      * See: http://webpack.github.io/docs/configuration.html#cache
42      */
43     // cache: false,
44
45     /*
46      * The entry point for the bundle
47      * Our Angular.js app
48      *
49      * See: http://webpack.github.io/docs/configuration.html#entry
50      */
51     entry: {
52       'polyfills': './src/polyfills.ts',
53       'vendor': './src/vendor.ts',
54       'main': './src/main.ts'
55     },
56
57     /*
58      * Options affecting the resolving of modules.
59      *
60      * See: http://webpack.github.io/docs/configuration.html#resolve
61      */
62     resolve: {
63       /*
64        * An array of extensions that should be used to resolve modules.
65        *
66        * See: http://webpack.github.io/docs/configuration.html#resolve-extensions
67        */
68       extensions: [ '.ts', '.js', '.json', '.scss' ],
69
70       modules: [helpers.root('src'), 'node_modules']
71     },
72
73     /*
74      * Options affecting the normal modules.
75      *
76      * See: http://webpack.github.io/docs/configuration.html#module
77      */
78     module: {
79
80       rules: [
81
82         /*
83          * Typescript loader support for .ts and Angular 2 async routes via .async.ts
84          *
85          * See: https://github.com/s-panferov/awesome-typescript-loader
86          */
87         {
88           test: /\.ts$/,
89           loaders: [
90             '@angularclass/hmr-loader?pretty=' + !isProd + '&prod=' + isProd,
91             'awesome-typescript-loader',
92             'angular2-template-loader'
93           ],
94           exclude: [/\.(spec|e2e)\.ts$/]
95         },
96
97         /*
98          * Json loader support for *.json files.
99          *
100          * See: https://github.com/webpack/json-loader
101          */
102         {
103           test: /\.json$/,
104           loader: 'json-loader'
105         },
106
107         {
108           test: /\.(sass|scss)$/,
109           loaders: ['css-to-string-loader', 'css-loader?sourceMap', 'resolve-url', 'sass-loader?sourceMap']
110         },
111         { test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'url?limit=10000&minetype=application/font-woff' },
112         { test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'file' },
113
114         /* Raw loader support for *.html
115          * Returns file content as string
116          *
117          * See: https://github.com/webpack/raw-loader
118          */
119         {
120           test: /\.html$/,
121           loader: 'raw-loader',
122           exclude: [ helpers.root('src/index.html') ]
123         }
124
125       ]
126
127     },
128
129     /*
130      * Add additional plugins to the compiler.
131      *
132      * See: http://webpack.github.io/docs/configuration.html#plugins
133      */
134     plugins: [
135       new AssetsPlugin({
136         path: helpers.root('dist'),
137         filename: 'webpack-assets.json',
138         prettyPrint: true
139       }),
140
141       /*
142        * Plugin: ForkCheckerPlugin
143        * Description: Do type checking in a separate process, so webpack don't need to wait.
144        *
145        * See: https://github.com/s-panferov/awesome-typescript-loader#forkchecker-boolean-defaultfalse
146        */
147       new ForkCheckerPlugin(),
148
149       /*
150        * Plugin: CommonsChunkPlugin
151        * Description: Shares common code between the pages.
152        * It identifies common modules and put them into a commons chunk.
153        *
154        * See: https://webpack.github.io/docs/list-of-plugins.html#commonschunkplugin
155        * See: https://github.com/webpack/docs/wiki/optimization#multi-page-app
156        */
157       new webpack.optimize.CommonsChunkPlugin({
158         name: [ 'polyfills', 'vendor' ].reverse()
159       }),
160
161       /**
162        * Plugin: ContextReplacementPlugin
163        * Description: Provides context to Angular's use of System.import
164        *
165        * See: https://webpack.github.io/docs/list-of-plugins.html#contextreplacementplugin
166        * See: https://github.com/angular/angular/issues/11580
167        */
168       new ContextReplacementPlugin(
169         // The (\\|\/) piece accounts for path separators in *nix and Windows
170         /angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
171         helpers.root('src') // location of your src
172       ),
173
174       /*
175        * Plugin: CopyWebpackPlugin
176        * Description: Copy files and directories in webpack.
177        *
178        * Copies project static assets.
179        *
180        * See: https://www.npmjs.com/package/copy-webpack-plugin
181        */
182       new CopyWebpackPlugin([
183         {
184           from: 'src/assets',
185           to: 'assets'
186         },
187         {
188           from: 'node_modules/webtorrent/webtorrent.min.js',
189           to: 'assets/webtorrent'
190         }
191       ]),
192
193       /*
194        * Plugin: HtmlWebpackPlugin
195        * Description: Simplifies creation of HTML files to serve your webpack bundles.
196        * This is especially useful for webpack bundles that include a hash in the filename
197        * which changes every compilation.
198        *
199        * See: https://github.com/ampedandwired/html-webpack-plugin
200        */
201       new HtmlWebpackPlugin({
202         template: 'src/index.html',
203         title: METADATA.title,
204         chunksSortMode: 'dependency',
205         metadata: METADATA
206       }),
207
208       /*
209       * Plugin: ScriptExtHtmlWebpackPlugin
210       * Description: Enhances html-webpack-plugin functionality
211       * with different deployment options for your scripts including:
212       *
213       * See: https://github.com/numical/script-ext-html-webpack-plugin
214       */
215       new ScriptExtHtmlWebpackPlugin({
216         defaultAttribute: 'defer'
217       }),
218
219       new WebpackNotifierPlugin({ alwaysNotify: true }),
220
221       /**
222       * Plugin LoaderOptionsPlugin (experimental)
223       *
224       * See: https://gist.github.com/sokra/27b24881210b56bbaff7
225       */
226       new LoaderOptionsPlugin({
227         options: {
228           sassLoader: {
229             precision: 10
230           }
231         }
232       })
233     ],
234
235     /*
236      * Include polyfills or mocks for various node stuff
237      * Description: Node configuration
238      *
239      * See: https://webpack.github.io/docs/configuration.html#node
240      */
241     node: {
242       global: 'true',
243       crypto: 'empty',
244       process: true,
245       module: false,
246       clearImmediate: false,
247       setImmediate: false
248     }
249   }
250 }