const helpers = require('./helpers') /* * Webpack Plugins */ const AssetsPlugin = require('assets-webpack-plugin') const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin const NormalModuleReplacementPlugin = require('webpack/lib/NormalModuleReplacementPlugin') const ContextReplacementPlugin = require('webpack/lib/ContextReplacementPlugin') const CommonsChunkPlugin = require('webpack/lib/optimize/CommonsChunkPlugin') const CopyWebpackPlugin = require('copy-webpack-plugin') const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin const HtmlWebpackPlugin = require('html-webpack-plugin') const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin') const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin') const ngcWebpack = require('ngc-webpack') const WebpackNotifierPlugin = require('webpack-notifier') /* * Webpack Constants */ const METADATA = { title: 'PeerTube', baseUrl: '/', isDevServer: helpers.isWebpackDevServer() } /* * Webpack configuration * * See: http://webpack.github.io/docs/configuration.html#cli */ module.exports = function (options) { const isProd = options.env === 'production' const AOT = isProd return { /* * 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, /* * The entry point for the bundle * Our Angular.js app * * See: http://webpack.github.io/docs/configuration.html#entry */ entry: { 'polyfills': './src/polyfills.browser.ts', 'main': AOT ? './src/main.browser.aot.ts' : './src/main.browser.ts' }, /* * Options affecting the resolving of modules. * * See: http://webpack.github.io/docs/configuration.html#resolve */ resolve: { /* * An array of extensions that should be used to resolve modules. * * See: http://webpack.github.io/docs/configuration.html#resolve-extensions */ extensions: [ '.ts', '.js', '.json', '.scss' ], modules: [ helpers.root('src'), helpers.root('node_modules') ], alias: { 'video.js': 'video.js/dist/alt/video.novtt' } }, /* * Options affecting the normal modules. * * See: http://webpack.github.io/docs/configuration.html#module */ module: { rules: [ /* * Typescript loader support for .ts and Angular 2 async routes via .async.ts * * See: https://github.com/s-panferov/awesome-typescript-loader */ { test: /\.ts$/, use: [ '@angularclass/hmr-loader?pretty=' + !isProd + '&prod=' + isProd, 'awesome-typescript-loader?{configFileName: "tsconfig.webpack.json"}', 'angular2-template-loader', { loader: 'ng-router-loader', options: { loader: 'async-system', genDir: 'compiled', aot: AOT } } ], exclude: [/\.(spec|e2e)\.ts$/] }, /* * Json loader support for *.json files. * * See: https://github.com/webpack/json-loader */ { test: /\.json$/, loader: 'json-loader' }, { test: /\.(sass|scss)$/, use: ['css-to-string-loader', 'css-loader?sourceMap', 'resolve-url-loader', 'sass-loader?sourceMap'], exclude: [ helpers.root('src', 'styles') ] }, { 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' }, /* Raw loader support for *.html * Returns file content as string * * See: https://github.com/webpack/raw-loader */ { test: /\.html$/, loader: 'raw-loader', exclude: [ helpers.root('src/index.html'), helpers.root('src/standalone/videos/embed.html') ] } ] }, /* * Add additional plugins to the compiler. * * See: http://webpack.github.io/docs/configuration.html#plugins */ 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 */ new CheckerPlugin(), /* * 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 */ new CommonsChunkPlugin({ name: 'polyfills', chunks: ['polyfills'] }), // This enables tree shaking of the vendor modules new CommonsChunkPlugin({ name: 'vendor', chunks: ['main'], minChunks: module => /node_modules\//.test(module.resource) }), // Specify the correct order the scripts will be injected in new CommonsChunkPlugin({ name: ['polyfills', 'vendor'].reverse() }), /** * 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 */ new ContextReplacementPlugin( // The (\\|\/) piece accounts for path separators in *nix and Windows /angular(\\|\/)core(\\|\/)src(\\|\/)linker/, helpers.root('src'), // location of your src { // your Angular Async Route paths relative to this root directory } ), /* * Plugin: CopyWebpackPlugin * Description: Copy files and directories in webpack. * * Copies project static assets. * * See: https://www.npmjs.com/package/copy-webpack-plugin */ // Used by embed.html new CopyWebpackPlugin([ { from: 'src/assets', to: 'assets' }, { from: 'node_modules/webtorrent/webtorrent.min.js', to: 'assets/webtorrent' }, { from: 'node_modules/video.js/dist/video.min.js', to: 'assets/video-js' }, { from: 'node_modules/video.js/dist/video-js.min.css', to: 'assets/video-js' }, { from: 'node_modules/videojs-dock/dist/videojs-dock.min.js', to: 'assets/video-js' }, { from: 'node_modules/videojs-dock/dist/videojs-dock.css', to: 'assets/video-js' }, { from: 'src/standalone', to: 'standalone' } ]), /* * 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', title: METADATA.title, chunksSortMode: 'dependency', metadata: METADATA }), /* * 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: [ 'webtorrent.min.js' ], defaultAttribute: 'defer' }), new WebpackNotifierPlugin({ alwaysNotify: true }), /** * Plugin LoaderOptionsPlugin (experimental) * * See: https://gist.github.com/sokra/27b24881210b56bbaff7 */ new LoaderOptionsPlugin({ options: { sassLoader: { precision: 10 } } }), // Fix Angular 2 new NormalModuleReplacementPlugin( /facade(\\|\/)async/, helpers.root('node_modules/@angular/core/src/facade/async.js') ), new NormalModuleReplacementPlugin( /facade(\\|\/)collection/, helpers.root('node_modules/@angular/core/src/facade/collection.js') ), new NormalModuleReplacementPlugin( /facade(\\|\/)errors/, helpers.root('node_modules/@angular/core/src/facade/errors.js') ), new NormalModuleReplacementPlugin( /facade(\\|\/)lang/, helpers.root('node_modules/@angular/core/src/facade/lang.js') ), new NormalModuleReplacementPlugin( /facade(\\|\/)math/, helpers.root('node_modules/@angular/core/src/facade/math.js') ), new ngcWebpack.NgcWebpackPlugin({ disabled: !AOT, tsConfig: helpers.root('tsconfig.webpack.json'), resourceOverride: helpers.root('config/resource-override.js') }), new BundleAnalyzerPlugin({ // Can be `server`, `static` or `disabled`. // In `server` mode analyzer will start HTTP server to show bundle report. // In `static` mode single HTML file with bundle report will be generated. // In `disabled` mode you can use this plugin to just generate Webpack Stats JSON file by setting `generateStatsFile` to `true`. analyzerMode: 'static', // Path to bundle report file that will be generated in `static` mode. // Relative to bundles output directory. reportFilename: 'report.html', // Automatically open report in default browser openAnalyzer: false, // If `true`, Webpack Stats JSON file will be generated in bundles output directory generateStatsFile: true, // Name of Webpack Stats JSON file that will be generated if `generateStatsFile` is `true`. // Relative to bundles output directory. statsFilename: 'stats.json', // Options for `stats.toJson()` method. // For example you can exclude sources of your modules from stats file with `source: false` option. // See more options here: https://github.com/webpack/webpack/blob/webpack-1/lib/Stats.js#L21 statsOptions: null, // Log level. Can be 'info', 'warn', 'error' or 'silent'. logLevel: 'info' }) ], /* * Include polyfills or mocks for various node stuff * Description: Node configuration * * See: https://webpack.github.io/docs/configuration.html#node */ node: { global: true, crypto: 'empty', process: true, module: false, clearImmediate: false, setImmediate: false, setInterval: false, setTimeout: false } } }