angular-cli
Version:
CLI tool for Angular
132 lines (118 loc) • 3.94 kB
JavaScript
// this config must be JS so that the karma plugin can load it
const path = require('path');
const webpack = require('webpack');
const ngtools = require('@ngtools/webpack');
const g = global;
const webpackLoader = g['angularCliIsLocal']
? g.angularCliPackages['@ngtools/webpack'].main
: '@ngtools/webpack';
const ProgressPlugin = require('webpack/lib/ProgressPlugin');
/**
* Enumerate loaders and their dependencies from this file to let the dependency validator
* know they are used.
*
* require('source-map-loader')
* require('sourcemap-istanbul-instrumenter-loader')
*
* require('remap-istanbul')
*/
const getTestConfig = function (projectRoot, environment, appConfig, testConfig) {
const appRoot = path.resolve(projectRoot, appConfig.root);
const extraRules = [];
const extraPlugins = [];
if (testConfig.codeCoverage) {
extraRules.push({
test: /\.(js|ts)$/, loader: 'sourcemap-istanbul-instrumenter-loader',
enforce: 'post',
exclude: [
/\.(e2e|spec)\.ts$/,
/node_modules/
],
query: { 'force-sourcemap': true }
});
}
if (testConfig.progress) {
extraPlugins.push(new ProgressPlugin({ colors: true }));
}
return {
devtool: testConfig.sourcemap ? 'inline-source-map' : 'eval',
context: projectRoot,
resolve: {
extensions: ['.ts', '.js'],
plugins: [
new ngtools.PathsPlugin({
tsConfigPath: path.resolve(appRoot, appConfig.tsconfig)
})
]
},
entry: {
test: path.resolve(appRoot, appConfig.test)
},
output: {
path: './dist.test',
filename: '[name].bundle.js'
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre',
loader: 'source-map-loader',
exclude: [
/node_modules/
]
},
{
test: /\.ts$/,
loaders: [
{
loader: webpackLoader,
query: {
tsConfigPath: path.resolve(appRoot, appConfig.tsconfig),
module: 'commonjs'
}
}
],
exclude: [/\.e2e\.ts$/]
},
{ test: /\.json$/, loader: 'json-loader' },
{ test: /\.css$/, loaders: ['raw-loader', 'postcss-loader'] },
{ test: /\.styl$/, loaders: ['raw-loader', 'postcss-loader', 'stylus-loader'] },
{ test: /\.less$/, loaders: ['raw-loader', 'postcss-loader', 'less-loader'] },
{ test: /\.scss$|\.sass$/, loaders: ['raw-loader', 'postcss-loader', 'sass-loader'] },
{ test: /\.(jpg|png)$/, loader: 'url-loader?limit=128000' },
{ test: /\.html$/, loader: 'raw-loader', exclude: [path.resolve(appRoot, appConfig.index)] }
].concat(extraRules)
},
plugins: [
new webpack.SourceMapDevToolPlugin({
filename: null, // if no value is provided the sourcemap is inlined
test: /\.(ts|js)($|\?)/i // process .js and .ts files only
}),
new webpack.NormalModuleReplacementPlugin(
// This plugin is responsible for swapping the environment files.
// Since it takes a RegExp as first parameter, we need to escape the path.
// See https://webpack.github.io/docs/list-of-plugins.html#normalmodulereplacementplugin
new RegExp(path.resolve(appRoot, appConfig.environments['source'])
.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&')),
path.resolve(appRoot, appConfig.environments[environment])
),
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
appRoot
)
].concat(extraPlugins),
node: {
fs: 'empty',
global: true,
crypto: 'empty',
tls: 'empty',
net: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false
}
};
}
module.exports.getTestConfig = getTestConfig;