2017-10-29 03:14:14 +01:00
|
|
|
const path = require('path');
|
2017-10-29 03:47:01 +01:00
|
|
|
const webpack = require('webpack');
|
2017-10-29 03:14:14 +01:00
|
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin');
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
|
|
|
2017-11-08 16:22:26 +01:00
|
|
|
const isVendorModule = (module) => {
|
|
|
|
// returns true for everything in node_modules
|
|
|
|
return module.context && module.context.indexOf('node_modules') !== -1;
|
|
|
|
};
|
|
|
|
|
2017-10-29 03:14:14 +01:00
|
|
|
module.exports = {
|
|
|
|
entry: {
|
|
|
|
'popup/app': './src/popup/app/app.js',
|
2017-12-06 19:51:49 +01:00
|
|
|
'background': './src/background.ts',
|
2017-10-29 03:14:14 +01:00
|
|
|
'content/autofill': './src/content/autofill.js',
|
|
|
|
'content/autofiller': './src/content/autofiller.js',
|
|
|
|
'content/notificationBar': './src/content/notificationBar.js',
|
|
|
|
'notification/bar': './src/notification/bar.js',
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
2017-10-30 22:49:56 +01:00
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
enforce: 'pre',
|
|
|
|
loader: 'tslint-loader'
|
|
|
|
},
|
2017-10-29 03:14:14 +01:00
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
|
|
|
use: 'ts-loader',
|
|
|
|
exclude: /node_modules/
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(html)$/,
|
|
|
|
loader: 'html-loader'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
|
2017-11-10 14:29:40 +01:00
|
|
|
exclude: /loading.svg/,
|
2017-10-29 03:14:14 +01:00
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]',
|
|
|
|
outputPath: 'popup/fonts/',
|
|
|
|
publicPath: '/'
|
|
|
|
}
|
|
|
|
}]
|
2017-11-07 22:59:21 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
2017-12-07 22:04:43 +01:00
|
|
|
exclude: /.*(fontawesome-webfont|glyphicons-halflings-regular)\.svg/,
|
2017-11-07 22:59:21 +01:00
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2017-12-07 22:29:13 +01:00
|
|
|
name: '[name].[ext]',
|
2017-12-07 22:04:43 +01:00
|
|
|
outputPath: 'popup/images/',
|
|
|
|
publicPath: '/'
|
2017-11-07 22:59:21 +01:00
|
|
|
}
|
|
|
|
}]
|
2017-10-29 03:14:14 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new CleanWebpackPlugin([
|
2017-11-16 17:23:53 +01:00
|
|
|
path.resolve(__dirname, 'build/*')
|
2017-10-29 03:14:14 +01:00
|
|
|
]),
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-10-29 03:47:01 +01:00
|
|
|
name: 'popup/vendor',
|
2017-10-29 03:14:14 +01:00
|
|
|
chunks: ['popup/app'],
|
2017-11-08 16:22:26 +01:00
|
|
|
minChunks: isVendorModule
|
|
|
|
}),
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'vendor',
|
|
|
|
chunks: ['background'],
|
|
|
|
minChunks: isVendorModule
|
2017-10-29 03:14:14 +01:00
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/popup/index.html',
|
|
|
|
filename: 'popup/index.html',
|
|
|
|
chunks: ['popup/vendor', 'popup/app', 'fonts']
|
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/background.html',
|
|
|
|
filename: 'background.html',
|
2017-11-08 16:22:26 +01:00
|
|
|
chunks: ['vendor', 'background']
|
2017-10-29 03:14:14 +01:00
|
|
|
}),
|
|
|
|
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' },
|
2017-11-08 16:22:26 +01:00
|
|
|
{ from: './src/content/autofill.css', to: 'content' }
|
2017-10-29 03:14:14 +01:00
|
|
|
])
|
|
|
|
],
|
|
|
|
resolve: {
|
2017-10-29 03:47:01 +01:00
|
|
|
extensions: ['.tsx', '.ts', '.js']
|
2017-10-29 03:14:14 +01:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-11-16 17:23:53 +01:00
|
|
|
path: path.resolve(__dirname, 'build')
|
2017-10-29 03:14:14 +01:00
|
|
|
}
|
|
|
|
};
|