PeerTube/client/config/webpack.dev.js

258 lines
7.2 KiB
JavaScript
Raw Normal View History

const helpers = require('./helpers')
const webpackMerge = require('webpack-merge') // used to merge webpack configs
2017-01-19 21:54:40 +01:00
const webpackMergeDll = webpackMerge.strategy({plugins: 'replace'})
const commonConfig = require('./webpack.common.js') // the settings that are common to prod and dev
/**
* Webpack Plugins
*/
2017-01-19 21:54:40 +01:00
const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin')
const DefinePlugin = require('webpack/lib/DefinePlugin')
2016-09-06 22:40:57 +02:00
const NamedModulesPlugin = require('webpack/lib/NamedModulesPlugin')
2016-11-04 12:50:01 +01:00
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
/**
* Webpack Constants
*/
const ENV = process.env.ENV = process.env.NODE_ENV = 'development'
2016-09-06 22:40:57 +02:00
const HOST = process.env.HOST || 'localhost'
const PORT = process.env.PORT || 3000
const HMR = helpers.hasProcessFlag('hot')
2016-09-12 20:43:44 +02:00
const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
2016-09-06 22:40:57 +02:00
host: HOST,
port: PORT,
ENV: ENV,
HMR: HMR
})
2017-01-19 21:54:40 +01:00
const DllBundlesPlugin = require('webpack-dll-bundles-plugin').DllBundlesPlugin
/**
* Webpack configuration
*
* See: http://webpack.github.io/docs/configuration.html#cli
*/
2016-09-20 22:45:14 +02:00
module.exports = function (env) {
2017-01-13 12:16:00 +01:00
return webpackMerge(commonConfig({ env: ENV }), {
/**
2016-11-04 12:50:01 +01:00
* Developer tool to enhance debugging
*
* See: http://webpack.github.io/docs/configuration.html#devtool
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
*/
2016-09-20 22:45:14 +02:00
devtool: 'cheap-module-source-map',
2016-09-20 22:45:14 +02:00
/**
2016-11-04 12:50:01 +01:00
* Options affecting the output of the compilation.
*
* See: http://webpack.github.io/docs/configuration.html#output
*/
2016-09-20 22:45:14 +02:00
output: {
/**
2016-11-04 12:50:01 +01:00
* The output directory as absolute path (required).
*
* See: http://webpack.github.io/docs/configuration.html#output-path
*/
2016-09-20 22:45:14 +02:00
path: helpers.root('dist'),
/**
2016-11-04 12:50:01 +01:00
* Specifies the name of each output file on disk.
* IMPORTANT: You must not specify an absolute path here!
*
* See: http://webpack.github.io/docs/configuration.html#output-filename
*/
2016-09-20 22:45:14 +02:00
filename: '[name].bundle.js',
/**
2016-11-04 12:50:01 +01:00
* The filename of the SourceMaps for the JavaScript files.
* They are inside the output.path directory.
*
* See: http://webpack.github.io/docs/configuration.html#output-sourcemapfilename
*/
2016-09-20 22:45:14 +02:00
sourceMapFilename: '[name].map',
/** The filename of non-entry chunks as relative path
2016-11-04 12:50:01 +01:00
* inside the output.path directory.
*
* See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
*/
2016-09-20 22:45:14 +02:00
chunkFilename: '[id].chunk.js',
library: 'ac_[name]',
2016-11-04 12:50:01 +01:00
libraryTarget: 'var',
2016-09-06 22:40:57 +02:00
2016-11-04 12:50:01 +01:00
publicPath: '/client/'
2016-09-20 22:45:14 +02:00
},
2016-09-20 22:45:14 +02:00
externals: {
webtorrent: 'WebTorrent'
},
module: {
2017-04-21 11:06:33 +02:00
// Too slow, life is short
// rules: [
// {
// test: /\.ts$/,
// use: [
// {
// loader: 'tslint-loader',
// options: {
// configFile: 'tslint.json'
// }
// }
// ],
// exclude: [
// /\.(spec|e2e)\.ts$/,
// /node_modules\//
// ]
// }
// ]
},
2016-09-20 22:45:14 +02:00
plugins: [
/**
2016-11-04 12:50:01 +01:00
* Plugin: DefinePlugin
* Description: Define free variables.
* Useful for having development builds with debug logging or adding global constants.
*
* Environment helpers
*
* See: https://webpack.github.io/docs/list-of-plugins.html#defineplugin
*/
2016-09-20 22:45:14 +02:00
// NOTE: when adding more properties, make sure you include them in custom-typings.d.ts
new DefinePlugin({
'ENV': JSON.stringify(METADATA.ENV),
'HMR': METADATA.HMR,
'process.env': {
'ENV': JSON.stringify(METADATA.ENV),
'NODE_ENV': JSON.stringify(METADATA.ENV),
'HMR': METADATA.HMR
}
}),
2017-01-19 21:54:40 +01:00
new DllBundlesPlugin({
bundles: {
polyfills: [
'core-js',
{
name: 'zone.js',
path: 'zone.js/dist/zone.js'
},
{
name: 'zone.js',
path: 'zone.js/dist/long-stack-trace-zone.js'
}
2017-01-19 21:54:40 +01:00
],
vendor: [
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/core',
'@angular/common',
'@angular/forms',
'@angular/http',
'@angular/router',
'@angularclass/hmr',
'rxjs'
]
},
dllDir: helpers.root('dll'),
webpackConfig: webpackMergeDll(commonConfig({env: ENV}), {
devtool: 'cheap-module-source-map',
plugins: []
})
}),
/**
* Plugin: AddAssetHtmlPlugin
* Description: Adds the given JS or CSS file to the files
* Webpack knows about, and put it into the list of assets
* html-webpack-plugin injects into the generated html.
*
* See: https://github.com/SimenB/add-asset-html-webpack-plugin
*/
new AddAssetHtmlPlugin([
{ filepath: helpers.root(`dll/${DllBundlesPlugin.resolveFile('polyfills')}`) },
{ filepath: helpers.root(`dll/${DllBundlesPlugin.resolveFile('vendor')}`) }
]),
2016-11-04 12:50:01 +01:00
/**
* Plugin: NamedModulesPlugin (experimental)
* Description: Uses file names as module name.
*
* See: https://github.com/webpack/webpack/commit/a04ffb928365b19feb75087c63f13cadfc08e1eb
*/
new NamedModulesPlugin(),
/**
* Plugin LoaderOptionsPlugin (experimental)
*
* See: https://gist.github.com/sokra/27b24881210b56bbaff7
*/
new LoaderOptionsPlugin({
debug: true,
options: {
/**
* Static analysis linter for TypeScript advanced options configuration
* Description: An extensible linter for the TypeScript language.
*
* See: https://github.com/wbuchwalter/tslint-loader
*/
tslint: {
emitErrors: false,
failOnHint: false,
2017-04-21 11:06:33 +02:00
typeCheck: true,
2016-11-04 12:50:01 +01:00
resourcePath: 'src'
},
// FIXME: Remove
// https://github.com/bholloway/resolve-url-loader/issues/36
// https://github.com/jtangelder/sass-loader/issues/289
context: __dirname,
output: {
path: helpers.root('dist')
}
}
})
2016-09-20 22:45:14 +02:00
],
/**
2016-11-04 12:50:01 +01:00
* Webpack Development Server configuration
* Description: The webpack-dev-server is a little node.js Express server.
* The server emits information about the compilation state to the client,
* which reacts to those events.
*
* See: https://webpack.github.io/docs/webpack-dev-server.html
*/
2016-09-20 22:45:14 +02:00
devServer: {
port: METADATA.port,
host: METADATA.host,
historyApiFallback: true,
watchOptions: {
aggregateTimeout: 300,
poll: 1000
},
outputPath: helpers.root('dist')
},
/*
2016-11-04 12:50:01 +01:00
* Include polyfills or mocks for various node stuff
* Description: Node configuration
*
* See: https://webpack.github.io/docs/configuration.html#node
*/
2016-09-20 22:45:14 +02:00
node: {
2016-11-04 12:50:01 +01:00
global: true,
2016-09-20 22:45:14 +02:00
crypto: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false
}
})
}