Prepare embed page
[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'), helpers.root('src/standalone/videos/embed.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           from: 'node_modules/video.js/dist/video.min.js',
193           to: 'assets/video-js'
194         },
195         {
196           from: 'node_modules/video.js/dist/video-js.min.css',
197           to: 'assets/video-js'
198         },
199         {
200           from: 'node_modules/videojs-dock/dist/videojs-dock.min.js',
201           to: 'assets/video-js'
202         },
203         {
204           from: 'node_modules/videojs-dock/dist/videojs-dock.css',
205           to: 'assets/video-js'
206         },
207         {
208           from: 'src/standalone',
209           to: 'standalone'
210         }
211       ]),
212
213       /*
214        * Plugin: HtmlWebpackPlugin
215        * Description: Simplifies creation of HTML files to serve your webpack bundles.
216        * This is especially useful for webpack bundles that include a hash in the filename
217        * which changes every compilation.
218        *
219        * See: https://github.com/ampedandwired/html-webpack-plugin
220        */
221       new HtmlWebpackPlugin({
222         template: 'src/index.html',
223         title: METADATA.title,
224         chunksSortMode: 'dependency',
225         metadata: METADATA
226       }),
227
228       /*
229       * Plugin: ScriptExtHtmlWebpackPlugin
230       * Description: Enhances html-webpack-plugin functionality
231       * with different deployment options for your scripts including:
232       *
233       * See: https://github.com/numical/script-ext-html-webpack-plugin
234       */
235       new ScriptExtHtmlWebpackPlugin({
236         sync: [ 'webtorrent.min.js' ],
237         defaultAttribute: 'defer'
238       }),
239
240       new WebpackNotifierPlugin({ alwaysNotify: true }),
241
242       /**
243       * Plugin LoaderOptionsPlugin (experimental)
244       *
245       * See: https://gist.github.com/sokra/27b24881210b56bbaff7
246       */
247       new LoaderOptionsPlugin({
248         options: {
249           sassLoader: {
250             precision: 10
251           }
252         }
253       })
254     ],
255
256     /*
257      * Include polyfills or mocks for various node stuff
258      * Description: Node configuration
259      *
260      * See: https://webpack.github.io/docs/configuration.html#node
261      */
262     node: {
263       global: 'true',
264       crypto: 'empty',
265       process: true,
266       module: false,
267       clearImmediate: false,
268       setImmediate: false
269     }
270   }
271 }