bitwarden-estensione-browser/webpack.common.js

130 lines
4.2 KiB
JavaScript
Raw Normal View History

const path = require('path');
2017-10-29 03:47:01 +01:00
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const isVendorModule = (module) => {
2018-01-08 18:15:45 +01:00
if (!module.context) {
return false;
}
const nodeModule = module.context.indexOf('node_modules') !== -1;
const bitwardenModule = module.context.indexOf('@bitwarden') !== -1;
return nodeModule && !bitwardenModule;
};
module.exports = {
entry: {
'popup/app': './src/popup/app/app.js',
'background': './src/background.ts',
'content/autofill': './src/content/autofill.js',
'content/autofiller': './src/content/autofiller.js',
'content/notificationBar': './src/content/notificationBar.js',
'content/shortcuts': './src/content/shortcuts.js',
'notification/bar': './src/notification/bar.js',
2018-01-15 16:01:25 +01:00
'downloader/downloader': './src/downloader/downloader.ts',
2018-01-18 20:40:23 +01:00
'2fa/2fa': './src/2fa/2fa.ts',
},
module: {
rules: [
{
test: /\.ts$/,
enforce: 'pre',
loader: 'tslint-loader'
},
{
test: /\.tsx?$/,
use: 'ts-loader',
2018-01-09 04:29:11 +01:00
exclude: /node_modules\/(?!(@bitwarden)\/).*/
},
{
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/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'popup/fonts/',
2018-02-19 23:09:08 +01:00
publicPath: './fonts/'
}
}]
2017-11-07 22:59:21 +01:00
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
exclude: /.*(fontawesome-webfont|glyphicons-halflings-regular)\.svg/,
2017-11-07 22:59:21 +01:00
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'popup/images/',
2018-02-19 23:09:08 +01:00
publicPath: './images/'
2017-11-07 22:59:21 +01:00
}
}]
}
]
},
plugins: [
new CleanWebpackPlugin([
path.resolve(__dirname, 'build/*')
]),
new webpack.optimize.CommonsChunkPlugin({
2017-10-29 03:47:01 +01:00
name: 'popup/vendor',
chunks: ['popup/app'],
minChunks: isVendorModule
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
chunks: ['background'],
minChunks: isVendorModule
}),
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',
chunks: ['vendor', 'background']
}),
new HtmlWebpackPlugin({
template: './src/notification/bar.html',
filename: 'notification/bar.html',
chunks: ['notification/bar']
}),
2018-01-15 16:01:25 +01:00
new HtmlWebpackPlugin({
template: './src/downloader/index.html',
filename: 'downloader/index.html',
chunks: ['downloader/downloader']
}),
2018-01-18 20:40:23 +01:00
new HtmlWebpackPlugin({
template: './src/2fa/index.html',
filename: '2fa/index.html',
chunks: ['2fa/2fa']
}),
new CopyWebpackPlugin([
'./src/manifest.json',
{ from: './src/_locales', to: '_locales' },
{ from: './src/edge', to: 'edge' },
2018-01-16 15:41:59 +01:00
{ from: './src/safari', to: 'safari' },
{ from: './src/images', to: 'images' },
{ from: './src/content/autofill.css', to: 'content' }
])
],
resolve: {
2018-01-09 20:26:20 +01:00
extensions: ['.tsx', '.ts', '.js'],
alias: {
2018-02-19 23:01:00 +01:00
jslib: path.join(__dirname, 'jslib/src')
2018-01-09 20:26:20 +01:00
}
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build')
}
};