]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/config/webpack.prod.js
Bundle webtorrent with webpack. Closes https://github.com/Chocobozzz/PeerTube/issues/50
[github/Chocobozzz/PeerTube.git] / client / config / webpack.prod.js
CommitLineData
b20b5fed
C
1/**
2 * @author: @AngularClass
3 */
4
5const helpers = require('./helpers')
6const webpackMerge = require('webpack-merge') // used to merge webpack configs
7const commonConfig = require('./webpack.common.js') // the settings that are common to prod and dev
8
9/**
10 * Webpack Plugins
11 */
b20b5fed 12const DefinePlugin = require('webpack/lib/DefinePlugin')
4d19d2f1 13const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
c16ce1de 14const NormalModuleReplacementPlugin = require('webpack/lib/NormalModuleReplacementPlugin')
f7ac0f84 15const OptimizeJsPlugin = require('optimize-js-plugin')
b20b5fed 16const UglifyJsPlugin = require('webpack/lib/optimize/UglifyJsPlugin')
8635a2c7 17const HashedModuleIdsPlugin = require('webpack/lib/HashedModuleIdsPlugin')
b20b5fed
C
18
19/**
20 * Webpack Constants
21 */
22const ENV = process.env.NODE_ENV = process.env.ENV = 'production'
23const HOST = process.env.HOST || 'localhost'
24const PORT = process.env.PORT || 8080
2e92c10b 25const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
b20b5fed
C
26 host: HOST,
27 port: PORT,
28 ENV: ENV,
1840c2f7
C
29 HMR: false,
30 API_URL: ''
b20b5fed
C
31})
32
ad22074a
C
33module.exports = function (env) {
34 return webpackMerge(commonConfig({env: ENV}), {
b20b5fed 35 /**
4d19d2f1
C
36 * Developer tool to enhance debugging
37 *
38 * See: http://webpack.github.io/docs/configuration.html#devtool
39 * See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
40 */
ad22074a 41 devtool: 'source-map',
b20b5fed
C
42
43 /**
4d19d2f1
C
44 * Options affecting the output of the compilation.
45 *
46 * See: http://webpack.github.io/docs/configuration.html#output
47 */
ad22074a 48 output: {
4d19d2f1 49
ad22074a 50 /**
4d19d2f1
C
51 * The output directory as absolute path (required).
52 *
53 * See: http://webpack.github.io/docs/configuration.html#output-path
54 */
ad22074a
C
55 path: helpers.root('dist'),
56
57 /**
4d19d2f1
C
58 * Specifies the name of each output file on disk.
59 * IMPORTANT: You must not specify an absolute path here!
60 *
61 * See: http://webpack.github.io/docs/configuration.html#output-filename
62 */
ad22074a
C
63 filename: '[name].[chunkhash].bundle.js',
64
65 /**
4d19d2f1
C
66 * The filename of the SourceMaps for the JavaScript files.
67 * They are inside the output.path directory.
68 *
69 * See: http://webpack.github.io/docs/configuration.html#output-sourcemapfilename
70 */
8635a2c7 71 sourceMapFilename: '[file].map',
ad22074a
C
72
73 /**
4d19d2f1
C
74 * The filename of non-entry chunks as relative path
75 * inside the output.path directory.
76 *
77 * See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
78 */
8635a2c7 79 chunkFilename: '[name].[chunkhash].chunk.js',
ad22074a 80
4d19d2f1 81 publicPath: '/client/'
ad22074a
C
82 },
83
b20b5fed 84 /**
ad22074a 85 * Add additional plugins to the compiler.
b20b5fed 86 *
ad22074a 87 * See: http://webpack.github.io/docs/configuration.html#plugins
b20b5fed 88 */
ad22074a
C
89 plugins: [
90
f7ac0f84
C
91 /**
92 * Webpack plugin to optimize a JavaScript file for faster initial load
93 * by wrapping eagerly-invoked functions.
94 *
95 * See: https://github.com/vigneshshanmugam/optimize-js-plugin
96 */
97
98 new OptimizeJsPlugin({
99 sourceMap: false
100 }),
101
ad22074a
C
102 /**
103 * Plugin: DedupePlugin
104 * Description: Prevents the inclusion of duplicate code into your bundle
105 * and instead applies a copy of the function at runtime.
106 *
107 * See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
108 * See: https://github.com/webpack/docs/wiki/optimization#deduplication
109 */
110 // new DedupePlugin(),
111
112 /**
113 * Plugin: DefinePlugin
114 * Description: Define free variables.
115 * Useful for having development builds with debug logging or adding global constants.
116 *
117 * Environment helpers
118 *
119 * See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
120 */
121 // NOTE: when adding more properties make sure you include them in custom-typings.d.ts
122 new DefinePlugin({
123 'ENV': JSON.stringify(METADATA.ENV),
124 'HMR': METADATA.HMR,
1840c2f7 125 'API_URL': JSON.stringify(METADATA.API_URL),
ad22074a
C
126 'process.env': {
127 'ENV': JSON.stringify(METADATA.ENV),
128 'NODE_ENV': JSON.stringify(METADATA.ENV),
129 'HMR': METADATA.HMR
130 }
131 }),
4d19d2f1
C
132/**
133 * Plugin: UglifyJsPlugin
134 * Description: Minimize all JavaScript output of chunks.
135 * Loaders are switched into minimizing mode.
136 *
137 * See: https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin
138 */
ad22074a
C
139 // NOTE: To debug prod builds uncomment //debug lines and comment //prod lines
140 new UglifyJsPlugin({
141 // beautify: true, //debug
142 // mangle: false, //debug
143 // dead_code: false, //debug
144 // unused: false, //debug
145 // deadCode: false, //debug
146 // compress: {
147 // screw_ie8: true,
148 // keep_fnames: true,
149 // drop_debugger: false,
150 // dead_code: false,
151 // unused: false
152 // }, // debug
153 // comments: true, //debug
154
155 beautify: false, // prod
c16ce1de
C
156 output: {
157 comments: false
158 }, // prod
4d19d2f1 159 mangle: {
c16ce1de 160 screw_ie8: true
4d19d2f1
C
161 }, // prod
162 compress: {
408c7137 163 screw_ie8: true,
c16ce1de
C
164 warnings: false,
165 conditionals: true,
166 unused: true,
167 comparisons: true,
168 sequences: true,
169 dead_code: true,
170 evaluate: true,
171 if_return: true,
172 join_vars: true,
173 negate_iife: false // we need this for lazy v8
174 }
ad22074a
C
175 }),
176
177 new NormalModuleReplacementPlugin(
178 /angular2-hmr/,
c16ce1de 179 helpers.root('config/empty.js')
4d19d2f1 180 ),
ad22074a 181
c16ce1de
C
182 new NormalModuleReplacementPlugin(
183 /zone\.js(\\|\/)dist(\\|\/)long-stack-trace-zone/,
184 helpers.root('config/empty.js')
185 ),
186
8635a2c7 187 new HashedModuleIdsPlugin(),
c16ce1de 188
ad22074a 189 /**
4d19d2f1
C
190 * Plugin: IgnorePlugin
191 * Description: Don’t generate modules for requests matching the provided RegExp.
192 *
193 * See: http://webpack.github.io/docs/list-of-plugins.html#ignoreplugin
194 */
195
196 // new IgnorePlugin(/angular2-hmr/),
197
198 /**
199 * Plugin: CompressionPlugin
200 * Description: Prepares compressed versions of assets to serve
201 * them with Content-Encoding
202 *
203 * See: https://github.com/webpack/compression-webpack-plugin
204 */
205 // install compression-webpack-plugin
ad22074a
C
206 // new CompressionPlugin({
207 // regExp: /\.css$|\.html$|\.js$|\.map$/,
208 // threshold: 2 * 1024
209 // })
b20b5fed 210
4d19d2f1
C
211 /**
212 * Plugin LoaderOptionsPlugin (experimental)
213 *
214 * See: https://gist.github.com/sokra/27b24881210b56bbaff7
215 */
216 new LoaderOptionsPlugin({
8635a2c7 217 minimize: true,
4d19d2f1
C
218 debug: false,
219 options: {
b20b5fed 220
4d19d2f1
C
221 /**
222 * Static analysis linter for TypeScript advanced options configuration
223 * Description: An extensible linter for the TypeScript language.
224 *
225 * See: https://github.com/wbuchwalter/tslint-loader
226 */
227 tslint: {
228 emitErrors: true,
229 failOnHint: true,
230 resourcePath: 'src'
231 },
b20b5fed 232
4d19d2f1
C
233 /**
234 * Html loader advanced options
235 *
236 * See: https://github.com/webpack/html-loader#advanced-options
237 */
238 // TODO: Need to workaround Angular 2's html syntax => #id [bind] (event) *ngFor
239 htmlLoader: {
240 minimize: true,
241 removeAttributeQuotes: false,
242 caseSensitive: true,
243 customAttrSurround: [
244 [/#/, /(?:)/],
245 [/\*/, /(?:)/],
246 [/\[?\(?/, /(?:)/]
247 ],
9bce7592 248 customAttrAssign: [/\)?]?=/]
4d19d2f1
C
249 },
250
251 // FIXME: Remove
252 // https://github.com/bholloway/resolve-url-loader/issues/36
253 // https://github.com/jtangelder/sass-loader/issues/289
254 context: __dirname,
255 output: {
256 path: helpers.root('dist')
257 }
258 }
259 })
260 ],
ad22074a
C
261
262 /*
4d19d2f1
C
263 * Include polyfills or mocks for various node stuff
264 * Description: Node configuration
265 *
266 * See: https://webpack.github.io/docs/configuration.html#node
267 */
ad22074a 268 node: {
4d19d2f1 269 global: true,
ad22074a 270 crypto: 'empty',
294f80f2 271 fs: 'empty',
ad22074a
C
272 process: false,
273 module: false,
274 clearImmediate: false,
275 setImmediate: false
276 }
277
278 })
279}