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