2018-04-07 05:20:53 +02:00
|
|
|
const path = require('path');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin');
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
const AngularCompilerPlugin = require('@ngtools/webpack').AngularCompilerPlugin;
|
2018-04-04 04:14:54 +02:00
|
|
|
|
2018-04-13 21:14:04 +02:00
|
|
|
if (process.env.NODE_ENV == null) {
|
|
|
|
process.env.NODE_ENV = 'development';
|
|
|
|
}
|
|
|
|
const ENV = process.env.ENV = process.env.NODE_ENV;
|
|
|
|
|
2018-04-04 04:14:54 +02:00
|
|
|
const extractCss = new ExtractTextPlugin({
|
|
|
|
filename: '[name].css',
|
|
|
|
disable: false,
|
2018-04-07 06:24:37 +02:00
|
|
|
allChunks: true,
|
2018-04-04 04:14:54 +02:00
|
|
|
});
|
|
|
|
|
2018-04-13 22:03:37 +02:00
|
|
|
const moduleRules = [
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
enforce: 'pre',
|
|
|
|
loader: 'tslint-loader',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(html)$/,
|
|
|
|
loader: 'html-loader',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
|
|
|
|
exclude: /loading.svg/,
|
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]',
|
|
|
|
outputPath: 'popup/fonts/',
|
|
|
|
publicPath: './fonts/',
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
|
|
|
exclude: /.*(fontawesome-webfont|glyphicons-halflings-regular)\.svg/,
|
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]',
|
|
|
|
outputPath: 'popup/images/',
|
|
|
|
publicPath: './images/',
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: extractCss.extract({
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'sass-loader',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
publicPath: '../',
|
|
|
|
}),
|
|
|
|
},
|
2018-09-12 05:54:39 +02:00
|
|
|
// Hide System.import warnings. ref: https://github.com/angular/angular/issues/21560
|
|
|
|
{
|
|
|
|
test: /[\/\\]@angular[\/\\].+\.js$/,
|
|
|
|
parser: { system: true },
|
|
|
|
},
|
2018-04-13 22:03:37 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
const plugins = [
|
|
|
|
new CleanWebpackPlugin([
|
|
|
|
path.resolve(__dirname, 'build/*'),
|
|
|
|
]),
|
|
|
|
// ref: https://github.com/angular/angular/issues/20357
|
2018-09-12 05:54:39 +02:00
|
|
|
new webpack.ContextReplacementPlugin(/\@angular(\\|\/)core(\\|\/)fesm5/,
|
2018-04-13 22:03:37 +02:00
|
|
|
path.resolve(__dirname, './src')),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/popup/index.html',
|
|
|
|
filename: 'popup/index.html',
|
|
|
|
chunks: ['popup/vendor', 'popup/main'],
|
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/background.html',
|
|
|
|
filename: 'background.html',
|
|
|
|
chunks: ['vendor', 'background'],
|
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/notification/bar.html',
|
|
|
|
filename: 'notification/bar.html',
|
|
|
|
chunks: ['notification/bar']
|
|
|
|
}),
|
|
|
|
new CopyWebpackPlugin([
|
|
|
|
'./src/manifest.json',
|
|
|
|
{ from: './src/_locales', to: '_locales' },
|
|
|
|
{ from: './src/edge', to: 'edge' },
|
|
|
|
{ from: './src/images', to: 'images' },
|
|
|
|
{ from: './src/popup/images', to: 'popup/images' },
|
|
|
|
{ from: './src/content/autofill.css', to: 'content' },
|
|
|
|
]),
|
|
|
|
new webpack.SourceMapDevToolPlugin({
|
|
|
|
filename: '[name].js.map',
|
|
|
|
include: ['popup/main.js', 'background.js'],
|
|
|
|
}),
|
|
|
|
extractCss,
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
'ENV': JSON.stringify(ENV)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
];
|
|
|
|
|
|
|
|
if (ENV === 'production') {
|
|
|
|
moduleRules.push({
|
|
|
|
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
|
|
|
|
loader: '@ngtools/webpack',
|
|
|
|
});
|
|
|
|
plugins.push(new AngularCompilerPlugin({
|
|
|
|
tsConfigPath: 'tsconfig.json',
|
|
|
|
entryModule: 'src/popup/app.module#AppModule',
|
|
|
|
sourceMap: true,
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
moduleRules.push({
|
|
|
|
test: /\.ts$/,
|
|
|
|
loaders: ['ts-loader', 'angular2-template-loader'],
|
|
|
|
exclude: path.resolve(__dirname, 'node_modules'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-07 06:24:37 +02:00
|
|
|
const config = {
|
2018-09-12 05:54:39 +02:00
|
|
|
mode: ENV,
|
2018-04-04 04:14:54 +02:00
|
|
|
entry: {
|
2018-04-11 03:54:20 +02:00
|
|
|
'popup/main': './src/popup/main.ts',
|
2018-04-04 04:14:54 +02:00
|
|
|
'background': './src/background.ts',
|
|
|
|
'content/autofill': './src/content/autofill.js',
|
2018-05-09 20:00:13 +02:00
|
|
|
'content/autofiller': './src/content/autofiller.ts',
|
|
|
|
'content/notificationBar': './src/content/notificationBar.ts',
|
2018-05-09 20:13:20 +02:00
|
|
|
'content/shortcuts': './src/content/shortcuts.ts',
|
2018-04-11 04:05:23 +02:00
|
|
|
'notification/bar': './src/notification/bar.js',
|
2018-04-04 04:14:54 +02:00
|
|
|
},
|
2018-09-12 05:54:39 +02:00
|
|
|
optimization: {
|
2018-09-14 22:00:44 +02:00
|
|
|
minimize: false,
|
2018-09-12 05:54:39 +02:00
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
commons: {
|
|
|
|
test: /[\\/]node_modules[\\/]/,
|
|
|
|
name: 'popup/vendor',
|
|
|
|
chunks: (chunk) => {
|
|
|
|
return chunk.name === 'popup/main';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
commons2: {
|
|
|
|
test: /[\\/]node_modules[\\/]/,
|
|
|
|
name: 'vendor',
|
|
|
|
chunks: (chunk) => {
|
|
|
|
return chunk.name === 'background';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-04-06 23:02:46 +02:00
|
|
|
resolve: {
|
2018-04-13 22:03:37 +02:00
|
|
|
extensions: ['.ts', '.js'],
|
2018-04-06 23:02:46 +02:00
|
|
|
alias: {
|
|
|
|
jslib: path.join(__dirname, 'jslib/src'),
|
|
|
|
},
|
|
|
|
symlinks: false,
|
2018-04-07 06:24:37 +02:00
|
|
|
modules: [path.resolve('node_modules')],
|
2018-04-06 23:02:46 +02:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2018-04-11 03:54:20 +02:00
|
|
|
path: path.resolve(__dirname, 'build'),
|
2018-04-06 23:02:46 +02:00
|
|
|
},
|
2018-04-13 22:03:37 +02:00
|
|
|
module: { rules: moduleRules },
|
|
|
|
plugins: plugins,
|
2018-04-04 04:14:54 +02:00
|
|
|
};
|
2018-04-07 06:24:37 +02:00
|
|
|
|
|
|
|
module.exports = config;
|