2016-06-03 16:08:03 -04:00
|
|
|
const helpers = require('./helpers')
|
|
|
|
const webpackMerge = require('webpack-merge') // used to merge webpack configs
|
|
|
|
const commonConfig = require('./webpack.common.js') // the settings that are common to prod and dev
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Webpack Plugins
|
|
|
|
*/
|
|
|
|
const DefinePlugin = require('webpack/lib/DefinePlugin')
|
2016-09-06 16:40:57 -04:00
|
|
|
const NamedModulesPlugin = require('webpack/lib/NamedModulesPlugin')
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Webpack Constants
|
|
|
|
*/
|
|
|
|
const ENV = process.env.ENV = process.env.NODE_ENV = 'development'
|
2016-09-06 16:40:57 -04:00
|
|
|
const HOST = process.env.HOST || 'localhost'
|
|
|
|
const PORT = process.env.PORT || 3000
|
2016-06-03 16:08:03 -04:00
|
|
|
const HMR = helpers.hasProcessFlag('hot')
|
2016-09-12 14:43:44 -04:00
|
|
|
const METADATA = webpackMerge(commonConfig({env: ENV}).metadata, {
|
2016-09-06 16:40:57 -04:00
|
|
|
host: HOST,
|
|
|
|
port: PORT,
|
2016-06-03 16:08:03 -04:00
|
|
|
ENV: ENV,
|
|
|
|
HMR: HMR
|
|
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Webpack configuration
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#cli
|
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
module.exports = function (env) {
|
|
|
|
return webpackMerge(commonConfig({env: ENV}), {
|
2016-06-03 16:08:03 -04:00
|
|
|
/**
|
2016-09-20 16:45:14 -04:00
|
|
|
* Merged metadata from webpack.common.js for index.html
|
2016-06-03 16:08:03 -04:00
|
|
|
*
|
2016-09-20 16:45:14 -04:00
|
|
|
* See: (custom attribute)
|
2016-06-03 16:08:03 -04:00
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
metadata: METADATA,
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
/**
|
2016-09-20 16:45:14 -04:00
|
|
|
* Switch loaders to debug mode.
|
2016-06-03 16:08:03 -04:00
|
|
|
*
|
2016-09-20 16:45:14 -04:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#debug
|
2016-06-03 16:08:03 -04:00
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
debug: true,
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
/**
|
2016-09-20 16:45:14 -04:00
|
|
|
* Developer tool to enhance debugging
|
2016-06-03 16:08:03 -04:00
|
|
|
*
|
2016-09-20 16:45:14 -04:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#devtool
|
|
|
|
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
|
2016-06-03 16:08:03 -04:00
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
devtool: 'cheap-module-source-map',
|
2016-06-03 16:08:03 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
/**
|
|
|
|
* Options affecting the output of the compilation.
|
2016-06-03 16:08:03 -04:00
|
|
|
*
|
2016-09-20 16:45:14 -04:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#output
|
2016-06-03 16:08:03 -04:00
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
output: {
|
|
|
|
/**
|
|
|
|
* The output directory as absolute path (required).
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#output-path
|
|
|
|
*/
|
|
|
|
path: helpers.root('dist'),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
filename: '[name].bundle.js',
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
sourceMapFilename: '[name].map',
|
|
|
|
|
|
|
|
/** The filename of non-entry chunks as relative path
|
|
|
|
* inside the output.path directory.
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#output-chunkfilename
|
|
|
|
*/
|
|
|
|
chunkFilename: '[id].chunk.js',
|
|
|
|
|
|
|
|
library: 'ac_[name]',
|
|
|
|
libraryTarget: 'var'
|
2016-09-06 16:40:57 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
},
|
2016-06-03 16:08:03 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
externals: {
|
|
|
|
webtorrent: 'WebTorrent'
|
|
|
|
},
|
2016-06-03 16:08:03 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
plugins: [
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
}),
|
2016-06-04 07:08:38 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
new NamedModulesPlugin()
|
|
|
|
],
|
2016-06-03 16:08:03 -04:00
|
|
|
|
|
|
|
/**
|
2016-09-20 16:45:14 -04:00
|
|
|
* Static analysis linter for TypeScript advanced options configuration
|
|
|
|
* Description: An extensible linter for the TypeScript language.
|
2016-06-03 16:08:03 -04:00
|
|
|
*
|
2016-09-20 16:45:14 -04:00
|
|
|
* See: https://github.com/wbuchwalter/tslint-loader
|
2016-06-03 16:08:03 -04:00
|
|
|
*/
|
2016-09-20 16:45:14 -04:00
|
|
|
tslint: {
|
|
|
|
emitErrors: false,
|
|
|
|
failOnHint: false,
|
|
|
|
resourcePath: 'src'
|
2016-09-06 16:40:57 -04:00
|
|
|
},
|
2016-06-03 16:08:03 -04:00
|
|
|
|
2016-09-20 16:45:14 -04:00
|
|
|
devServer: {
|
|
|
|
port: METADATA.port,
|
|
|
|
host: METADATA.host,
|
|
|
|
historyApiFallback: true,
|
|
|
|
watchOptions: {
|
|
|
|
aggregateTimeout: 300,
|
|
|
|
poll: 1000
|
|
|
|
},
|
|
|
|
outputPath: helpers.root('dist')
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Include polyfills or mocks for various node stuff
|
|
|
|
* Description: Node configuration
|
|
|
|
*
|
|
|
|
* See: https://webpack.github.io/docs/configuration.html#node
|
|
|
|
*/
|
|
|
|
node: {
|
|
|
|
global: 'window',
|
|
|
|
crypto: 'empty',
|
|
|
|
process: true,
|
|
|
|
module: false,
|
|
|
|
clearImmediate: false,
|
|
|
|
setImmediate: false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|