]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/config/webpack.dev.js
Client: Use recharge typo for logo
[github/Chocobozzz/PeerTube.git] / client / config / webpack.dev.js
CommitLineData
4a6995be
C
1const helpers = require('./helpers')
2const webpackMerge = require('webpack-merge') // used to merge webpack configs
cc3e2d9b 3const webpackMergeDll = webpackMerge.strategy({plugins: 'replace'})
4a6995be
C
4const commonConfig = require('./webpack.common.js') // the settings that are common to prod and dev
5
6/**
7 * Webpack Plugins
8 */
cc3e2d9b 9const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin')
4a6995be 10const DefinePlugin = require('webpack/lib/DefinePlugin')
ab32b0fc 11const NamedModulesPlugin = require('webpack/lib/NamedModulesPlugin')
4d19d2f1 12const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
4a6995be
C
13
14/**
15 * Webpack Constants
16 */
17const ENV = process.env.ENV = process.env.NODE_ENV = 'development'
ab32b0fc
C
18const HOST = process.env.HOST || 'localhost'
19const PORT = process.env.PORT || 3000
4a6995be 20const HMR = helpers.hasProcessFlag('hot')
2e92c10b 21const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
ab32b0fc
C
22 host: HOST,
23 port: PORT,
4a6995be
C
24 ENV: ENV,
25 HMR: HMR
26})
27
cc3e2d9b
C
28const DllBundlesPlugin = require('webpack-dll-bundles-plugin').DllBundlesPlugin
29
4a6995be
C
30/**
31 * Webpack configuration
32 *
33 * See: http://webpack.github.io/docs/configuration.html#cli
34 */
f9b2d2ce 35module.exports = function (env) {
c16ce1de 36 return webpackMerge(commonConfig({ env: ENV }), {
4a6995be 37 /**
4d19d2f1
C
38 * Developer tool to enhance debugging
39 *
40 * See: http://webpack.github.io/docs/configuration.html#devtool
41 * See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
42 */
f9b2d2ce 43 devtool: 'cheap-module-source-map',
4a6995be 44
f9b2d2ce 45 /**
4d19d2f1
C
46 * Options affecting the output of the compilation.
47 *
48 * See: http://webpack.github.io/docs/configuration.html#output
49 */
f9b2d2ce
C
50 output: {
51 /**
4d19d2f1
C
52 * The output directory as absolute path (required).
53 *
54 * See: http://webpack.github.io/docs/configuration.html#output-path
55 */
f9b2d2ce
C
56 path: helpers.root('dist'),
57
58 /**
4d19d2f1
C
59 * Specifies the name of each output file on disk.
60 * IMPORTANT: You must not specify an absolute path here!
61 *
62 * See: http://webpack.github.io/docs/configuration.html#output-filename
63 */
f9b2d2ce
C
64 filename: '[name].bundle.js',
65
66 /**
4d19d2f1
C
67 * The filename of the SourceMaps for the JavaScript files.
68 * They are inside the output.path directory.
69 *
70 * See: http://webpack.github.io/docs/configuration.html#output-sourcemapfilename
71 */
f9b2d2ce
C
72 sourceMapFilename: '[name].map',
73
74 /** The filename of non-entry chunks as relative path
4d19d2f1
C
75 * inside the output.path directory.
76 *
77 * See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
78 */
f9b2d2ce
C
79 chunkFilename: '[id].chunk.js',
80
81 library: 'ac_[name]',
4d19d2f1 82 libraryTarget: 'var',
ab32b0fc 83
4d19d2f1 84 publicPath: '/client/'
f9b2d2ce 85 },
4a6995be 86
f9b2d2ce
C
87 externals: {
88 webtorrent: 'WebTorrent'
89 },
4a6995be 90
a17bc2c3
C
91 module: {
92
383bfc83
C
93 // Too slow, life is short
94 // rules: [
95 // {
96 // test: /\.ts$/,
97 // use: [
98 // {
99 // loader: 'tslint-loader',
100 // options: {
101 // configFile: 'tslint.json'
102 // }
103 // }
104 // ],
105 // exclude: [
106 // /\.(spec|e2e)\.ts$/,
107 // /node_modules\//
108 // ]
109 // }
110 // ]
a17bc2c3
C
111 },
112
f9b2d2ce
C
113 plugins: [
114
115 /**
4d19d2f1
C
116 * Plugin: DefinePlugin
117 * Description: Define free variables.
118 * Useful for having development builds with debug logging or adding global constants.
119 *
120 * Environment helpers
121 *
122 * See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
123 */
f9b2d2ce
C
124 // NOTE: when adding more properties, make sure you include them in custom-typings.d.ts
125 new DefinePlugin({
126 'ENV': JSON.stringify(METADATA.ENV),
127 'HMR': METADATA.HMR,
128 'process.env': {
129 'ENV': JSON.stringify(METADATA.ENV),
130 'NODE_ENV': JSON.stringify(METADATA.ENV),
131 'HMR': METADATA.HMR
132 }
133 }),
7f82b8ae 134
cc3e2d9b
C
135 new DllBundlesPlugin({
136 bundles: {
137 polyfills: [
138 'core-js',
139 {
140 name: 'zone.js',
141 path: 'zone.js/dist/zone.js'
142 },
143 {
144 name: 'zone.js',
145 path: 'zone.js/dist/long-stack-trace-zone.js'
a17bc2c3 146 }
cc3e2d9b
C
147 ],
148 vendor: [
149 '@angular/platform-browser',
150 '@angular/platform-browser-dynamic',
151 '@angular/core',
152 '@angular/common',
153 '@angular/forms',
154 '@angular/http',
155 '@angular/router',
156 '@angularclass/hmr',
157 'rxjs'
158 ]
159 },
160 dllDir: helpers.root('dll'),
161 webpackConfig: webpackMergeDll(commonConfig({env: ENV}), {
162 devtool: 'cheap-module-source-map',
163 plugins: []
164 })
165 }),
166
167 /**
168 * Plugin: AddAssetHtmlPlugin
169 * Description: Adds the given JS or CSS file to the files
170 * Webpack knows about, and put it into the list of assets
171 * html-webpack-plugin injects into the generated html.
172 *
173 * See: https://github.com/SimenB/add-asset-html-webpack-plugin
174 */
175 new AddAssetHtmlPlugin([
176 { filepath: helpers.root(`dll/${DllBundlesPlugin.resolveFile('polyfills')}`) },
177 { filepath: helpers.root(`dll/${DllBundlesPlugin.resolveFile('vendor')}`) }
178 ]),
179
4d19d2f1
C
180 /**
181 * Plugin: NamedModulesPlugin (experimental)
182 * Description: Uses file names as module name.
183 *
184 * See: https://github.com/webpack/webpack/commit/a04ffb928365b19feb75087c63f13cadfc08e1eb
185 */
186 new NamedModulesPlugin(),
187
188 /**
189 * Plugin LoaderOptionsPlugin (experimental)
190 *
191 * See: https://gist.github.com/sokra/27b24881210b56bbaff7
192 */
193 new LoaderOptionsPlugin({
194 debug: true,
195 options: {
196
197 /**
198 * Static analysis linter for TypeScript advanced options configuration
199 * Description: An extensible linter for the TypeScript language.
200 *
201 * See: https://github.com/wbuchwalter/tslint-loader
202 */
203 tslint: {
204 emitErrors: false,
205 failOnHint: false,
383bfc83 206 typeCheck: true,
4d19d2f1
C
207 resourcePath: 'src'
208 },
209
210 // FIXME: Remove
211 // https://github.com/bholloway/resolve-url-loader/issues/36
212 // https://github.com/jtangelder/sass-loader/issues/289
213 context: __dirname,
214 output: {
215 path: helpers.root('dist')
216 }
217
218 }
219 })
220
f9b2d2ce 221 ],
4a6995be
C
222
223 /**
4d19d2f1
C
224 * Webpack Development Server configuration
225 * Description: The webpack-dev-server is a little node.js Express server.
226 * The server emits information about the compilation state to the client,
227 * which reacts to those events.
228 *
229 * See: https://webpack.github.io/docs/webpack-dev-server.html
230 */
f9b2d2ce
C
231 devServer: {
232 port: METADATA.port,
233 host: METADATA.host,
234 historyApiFallback: true,
235 watchOptions: {
236 aggregateTimeout: 300,
237 poll: 1000
238 },
239 outputPath: helpers.root('dist')
240 },
241
242 /*
4d19d2f1
C
243 * Include polyfills or mocks for various node stuff
244 * Description: Node configuration
245 *
246 * See: https://webpack.github.io/docs/configuration.html#node
247 */
f9b2d2ce 248 node: {
4d19d2f1 249 global: true,
f9b2d2ce
C
250 crypto: 'empty',
251 process: true,
252 module: false,
253 clearImmediate: false,
254 setImmediate: false
255 }
256 })
257}