2016-06-03 22:08:03 +02:00
|
|
|
const helpers = require('./helpers')
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Webpack Plugins
|
|
|
|
*/
|
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
const AssetsPlugin = require('assets-webpack-plugin')
|
2016-09-19 22:09:12 +02:00
|
|
|
const ContextReplacementPlugin = require('webpack/lib/ContextReplacementPlugin')
|
2017-01-13 12:16:00 +01:00
|
|
|
const CommonsChunkPlugin = require('webpack/lib/optimize/CommonsChunkPlugin')
|
|
|
|
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
2016-11-04 12:50:01 +01:00
|
|
|
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
|
|
|
|
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin')
|
2017-10-09 14:28:44 +02:00
|
|
|
const InlineManifestWebpackPlugin = require('inline-manifest-webpack-plugin')
|
2017-01-13 12:16:00 +01:00
|
|
|
const ngcWebpack = require('ngc-webpack')
|
|
|
|
|
2016-07-20 11:43:31 +02:00
|
|
|
const WebpackNotifierPlugin = require('webpack-notifier')
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2017-09-06 21:48:15 +02:00
|
|
|
const HMR = helpers.hasProcessFlag('hot')
|
|
|
|
const AOT = process.env.BUILD_AOT || helpers.hasNpmFlag('aot')
|
2016-06-03 22:08:03 +02:00
|
|
|
const METADATA = {
|
|
|
|
title: 'PeerTube',
|
2016-09-06 22:40:57 +02:00
|
|
|
baseUrl: '/',
|
2017-09-06 21:48:15 +02:00
|
|
|
isDevServer: helpers.isWebpackDevServer(),
|
|
|
|
HMR: HMR,
|
|
|
|
AOT: AOT
|
2016-06-03 22:08:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Webpack configuration
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#cli
|
|
|
|
*/
|
2016-09-12 20:43:44 +02:00
|
|
|
module.exports = function (options) {
|
2017-01-13 12:16:00 +01:00
|
|
|
const isProd = options.env === 'production'
|
|
|
|
const AOT = isProd
|
2016-09-12 20:43:44 +02:00
|
|
|
|
|
|
|
return {
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/*
|
|
|
|
* Cache generated modules and chunks to improve performance for multiple incremental builds.
|
|
|
|
* This is enabled by default in watch mode.
|
|
|
|
* You can pass false to disable it.
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#cache
|
|
|
|
*/
|
|
|
|
// cache: false,
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/*
|
|
|
|
* The entry point for the bundle
|
|
|
|
* Our Angular.js app
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#entry
|
|
|
|
*/
|
|
|
|
entry: {
|
2017-01-13 12:16:00 +01:00
|
|
|
'polyfills': './src/polyfills.browser.ts',
|
|
|
|
'main': AOT
|
|
|
|
? './src/main.browser.aot.ts'
|
|
|
|
: './src/main.browser.ts'
|
2016-09-12 20:43:44 +02:00
|
|
|
},
|
2016-06-03 22:47:55 +02:00
|
|
|
|
2016-06-03 22:08:03 +02:00
|
|
|
/*
|
2016-09-12 20:43:44 +02:00
|
|
|
* Options affecting the resolving of modules.
|
2016-06-03 22:08:03 +02:00
|
|
|
*
|
2016-09-12 20:43:44 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#resolve
|
2016-06-03 22:08:03 +02:00
|
|
|
*/
|
2016-09-12 20:43:44 +02:00
|
|
|
resolve: {
|
|
|
|
/*
|
|
|
|
* An array of extensions that should be used to resolve modules.
|
|
|
|
*
|
|
|
|
* See: http://webpack.github.io/docs/configuration.html#resolve-extensions
|
|
|
|
*/
|
2016-11-04 12:50:01 +01:00
|
|
|
extensions: [ '.ts', '.js', '.json', '.scss' ],
|
2016-09-12 20:43:44 +02:00
|
|
|
|
2017-04-17 12:24:18 +02:00
|
|
|
modules: [ helpers.root('src'), helpers.root('node_modules') ]
|
2016-09-12 20:43:44 +02:00
|
|
|
},
|
2016-06-03 22:08:03 +02:00
|
|
|
|
|
|
|
/*
|
2016-09-12 20:43:44 +02:00
|
|
|
* Options affecting the normal modules.
|
2016-06-03 22:08:03 +02:00
|
|
|
*
|
2016-09-12 20:43:44 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#module
|
2016-06-03 22:08:03 +02:00
|
|
|
*/
|
2016-09-12 20:43:44 +02:00
|
|
|
module: {
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-11-04 12:50:01 +01:00
|
|
|
rules: [
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/*
|
2017-06-11 12:28:22 +02:00
|
|
|
* Typescript loader support for .ts and Angular async routes via .async.ts
|
2016-09-12 20:43:44 +02:00
|
|
|
*
|
|
|
|
* See: https://github.com/s-panferov/awesome-typescript-loader
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
2017-01-13 12:16:00 +01:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'ng-router-loader',
|
|
|
|
options: {
|
2017-06-11 12:28:22 +02:00
|
|
|
loader: 'async-import',
|
2017-01-13 12:16:00 +01:00
|
|
|
genDir: 'compiled',
|
|
|
|
aot: AOT
|
|
|
|
}
|
2017-06-11 12:28:22 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'awesome-typescript-loader',
|
|
|
|
options: {
|
|
|
|
configFileName: 'tsconfig.webpack.json',
|
|
|
|
useCache: !isProd
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'angular2-template-loader'
|
2017-01-13 12:16:00 +01:00
|
|
|
}
|
2016-09-12 20:43:44 +02:00
|
|
|
],
|
|
|
|
exclude: [/\.(spec|e2e)\.ts$/]
|
|
|
|
},
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/*
|
|
|
|
* Json loader support for *.json files.
|
|
|
|
*
|
|
|
|
* See: https://github.com/webpack/json-loader
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
test: /\.json$/,
|
2017-06-11 12:28:22 +02:00
|
|
|
use: 'json-loader'
|
2016-09-12 20:43:44 +02:00
|
|
|
},
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
{
|
2016-09-19 22:27:17 +02:00
|
|
|
test: /\.(sass|scss)$/,
|
2017-04-21 11:06:33 +02:00
|
|
|
use: [
|
|
|
|
'css-to-string-loader',
|
2017-06-11 17:49:13 +02:00
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
sourceMap: true,
|
|
|
|
importLoaders: 1
|
|
|
|
}
|
|
|
|
},
|
2017-04-21 11:06:33 +02:00
|
|
|
'resolve-url-loader',
|
|
|
|
{
|
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
sourceMap: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'sass-resources-loader',
|
|
|
|
options: {
|
|
|
|
resources: [
|
|
|
|
helpers.root('src/sass/_variables.scss')
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-09-12 20:43:44 +02:00
|
|
|
},
|
2017-01-13 12:16:00 +01:00
|
|
|
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: 'url-loader?limit=10000&minetype=application/font-woff' },
|
|
|
|
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: 'file-loader' },
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/* Raw loader support for *.html
|
|
|
|
* Returns file content as string
|
|
|
|
*
|
|
|
|
* See: https://github.com/webpack/raw-loader
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
test: /\.html$/,
|
2017-06-11 12:28:22 +02:00
|
|
|
use: 'raw-loader',
|
2017-04-21 11:06:33 +02:00
|
|
|
exclude: [
|
|
|
|
helpers.root('src/index.html'),
|
|
|
|
helpers.root('src/standalone/videos/embed.html')
|
|
|
|
]
|
2017-06-11 15:19:43 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/* File loader for supporting images, for example, in CSS files.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
test: /\.(jpg|png|gif)$/,
|
2017-06-11 17:49:13 +02:00
|
|
|
use: 'url-loader'
|
2016-09-12 20:43:44 +02:00
|
|
|
}
|
2016-06-03 22:08:03 +02:00
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2016-06-03 22:08:03 +02:00
|
|
|
/*
|
2016-09-12 20:43:44 +02:00
|
|
|
* Add additional plugins to the compiler.
|
2016-06-03 22:08:03 +02:00
|
|
|
*
|
2016-09-12 20:43:44 +02:00
|
|
|
* See: http://webpack.github.io/docs/configuration.html#plugins
|
2016-06-03 22:08:03 +02:00
|
|
|
*/
|
2016-09-12 20:43:44 +02:00
|
|
|
plugins: [
|
|
|
|
new AssetsPlugin({
|
|
|
|
path: helpers.root('dist'),
|
|
|
|
filename: 'webpack-assets.json',
|
|
|
|
prettyPrint: true
|
|
|
|
}),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Plugin: ForkCheckerPlugin
|
|
|
|
* Description: Do type checking in a separate process, so webpack don't need to wait.
|
|
|
|
*
|
|
|
|
* See: https://github.com/s-panferov/awesome-typescript-loader#forkchecker-boolean-defaultfalse
|
|
|
|
*/
|
2017-01-13 12:16:00 +01:00
|
|
|
new CheckerPlugin(),
|
2016-09-12 20:43:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Plugin: CommonsChunkPlugin
|
|
|
|
* Description: Shares common code between the pages.
|
|
|
|
* It identifies common modules and put them into a commons chunk.
|
|
|
|
*
|
|
|
|
* See: https://webpack.github.io/docs/list-of-plugins.html#commonschunkplugin
|
|
|
|
* See: https://github.com/webpack/docs/wiki/optimization#multi-page-app
|
|
|
|
*/
|
2017-01-13 12:16:00 +01:00
|
|
|
new CommonsChunkPlugin({
|
|
|
|
name: 'polyfills',
|
|
|
|
chunks: ['polyfills']
|
|
|
|
}),
|
|
|
|
|
|
|
|
// This enables tree shaking of the vendor modules
|
|
|
|
new CommonsChunkPlugin({
|
|
|
|
name: 'vendor',
|
|
|
|
chunks: ['main'],
|
2017-10-09 14:28:44 +02:00
|
|
|
minChunks: module => {
|
|
|
|
return /node_modules\//.test(module.resource)
|
|
|
|
}
|
2017-01-13 12:16:00 +01:00
|
|
|
}),
|
|
|
|
|
|
|
|
// Specify the correct order the scripts will be injected in
|
|
|
|
new CommonsChunkPlugin({
|
|
|
|
name: ['polyfills', 'vendor'].reverse()
|
2016-09-12 20:43:44 +02:00
|
|
|
}),
|
|
|
|
|
2016-09-19 22:09:12 +02:00
|
|
|
/**
|
|
|
|
* Plugin: ContextReplacementPlugin
|
|
|
|
* Description: Provides context to Angular's use of System.import
|
|
|
|
*
|
|
|
|
* See: https://webpack.github.io/docs/list-of-plugins.html#contextreplacementplugin
|
|
|
|
* See: https://github.com/angular/angular/issues/11580
|
2016-11-04 12:50:01 +01:00
|
|
|
*/
|
2016-09-19 22:09:12 +02:00
|
|
|
new ContextReplacementPlugin(
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* The (\\|\/) piece accounts for path separators in *nix and Windows
|
|
|
|
*/
|
2017-09-06 21:48:15 +02:00
|
|
|
/(.+)?angular(\\|\/)core(.+)?/,
|
2017-01-13 12:16:00 +01:00
|
|
|
helpers.root('src'), // location of your src
|
|
|
|
{
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Your Angular Async Route paths relative to this root directory
|
|
|
|
*/
|
2017-01-13 12:16:00 +01:00
|
|
|
}
|
2016-09-19 22:09:12 +02:00
|
|
|
),
|
|
|
|
|
2016-09-12 20:43:44 +02:00
|
|
|
/*
|
|
|
|
* Plugin: HtmlWebpackPlugin
|
|
|
|
* Description: Simplifies creation of HTML files to serve your webpack bundles.
|
|
|
|
* This is especially useful for webpack bundles that include a hash in the filename
|
|
|
|
* which changes every compilation.
|
|
|
|
*
|
|
|
|
* See: https://github.com/ampedandwired/html-webpack-plugin
|
|
|
|
*/
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: 'src/index.html',
|
2016-11-04 12:50:01 +01:00
|
|
|
title: METADATA.title,
|
2017-09-06 21:48:15 +02:00
|
|
|
chunksSortMode: function (a, b) {
|
|
|
|
const entryPoints = [ 'inline', 'polyfills', 'sw-register', 'styles', 'vendor', 'main' ]
|
|
|
|
return entryPoints.indexOf(a.names[0]) - entryPoints.indexOf(b.names[0])
|
|
|
|
},
|
2017-06-11 12:28:22 +02:00
|
|
|
metadata: METADATA,
|
|
|
|
inject: 'body'
|
2016-09-12 20:43:44 +02:00
|
|
|
}),
|
|
|
|
|
2017-10-09 14:28:44 +02:00
|
|
|
/*
|
|
|
|
* Plugin: ScriptExtHtmlWebpackPlugin
|
|
|
|
* Description: Enhances html-webpack-plugin functionality
|
|
|
|
* with different deployment options for your scripts including:
|
|
|
|
*
|
|
|
|
* See: https://github.com/numical/script-ext-html-webpack-plugin
|
|
|
|
*/
|
|
|
|
new ScriptExtHtmlWebpackPlugin({
|
|
|
|
sync: [ /polyfill|vendor/ ],
|
|
|
|
defaultAttribute: 'async',
|
|
|
|
preload: [/polyfill|vendor|main/],
|
|
|
|
prefetch: [/chunk/]
|
|
|
|
}),
|
|
|
|
|
2016-11-04 12:50:01 +01:00
|
|
|
new WebpackNotifierPlugin({ alwaysNotify: true }),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin LoaderOptionsPlugin (experimental)
|
|
|
|
*
|
|
|
|
* See: https://gist.github.com/sokra/27b24881210b56bbaff7
|
|
|
|
*/
|
|
|
|
new LoaderOptionsPlugin({
|
|
|
|
options: {
|
|
|
|
sassLoader: {
|
2017-04-21 11:06:33 +02:00
|
|
|
precision: 10,
|
|
|
|
includePaths: [ helpers.root('src/sass') ]
|
2016-11-04 12:50:01 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-13 12:16:00 +01:00
|
|
|
}),
|
|
|
|
|
|
|
|
new ngcWebpack.NgcWebpackPlugin({
|
|
|
|
disabled: !AOT,
|
2017-08-25 12:11:42 +02:00
|
|
|
tsConfig: helpers.root('tsconfig.webpack.json')
|
2017-10-09 14:28:44 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
new InlineManifestWebpackPlugin(),
|
2016-09-12 20:43:44 +02:00
|
|
|
],
|
2016-06-03 22:08:03 +02:00
|
|
|
|
|
|
|
/*
|
2016-09-12 20:43:44 +02:00
|
|
|
* Include polyfills or mocks for various node stuff
|
|
|
|
* Description: Node configuration
|
2016-06-03 22:08:03 +02:00
|
|
|
*
|
2016-09-12 20:43:44 +02:00
|
|
|
* See: https://webpack.github.io/docs/configuration.html#node
|
2016-06-03 22:08:03 +02:00
|
|
|
*/
|
2016-09-12 20:43:44 +02:00
|
|
|
node: {
|
2017-01-19 21:54:40 +01:00
|
|
|
global: true,
|
2016-09-12 20:43:44 +02:00
|
|
|
crypto: 'empty',
|
2016-11-04 12:50:01 +01:00
|
|
|
process: true,
|
2016-09-12 20:43:44 +02:00
|
|
|
module: false,
|
|
|
|
clearImmediate: false,
|
2017-01-13 12:16:00 +01:00
|
|
|
setImmediate: false,
|
|
|
|
setInterval: false,
|
|
|
|
setTimeout: false
|
2016-09-12 20:43:44 +02:00
|
|
|
}
|
2016-06-03 22:08:03 +02:00
|
|
|
}
|
|
|
|
}
|