mirror of
https://github.com/twofas/2fas-browser-extension.git
synced 2024-11-23 02:30:09 +01:00
154 lines
4.6 KiB
JavaScript
154 lines
4.6 KiB
JavaScript
//
|
|
// This file is part of the 2FAS Browser Extension (https://github.com/twofas/2fas-browser-extension)
|
|
// Copyright © 2023 Two Factor Authentication Service, Inc.
|
|
// Contributed by Grzegorz Zając. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
//
|
|
|
|
// UTILS
|
|
const config = require('../utils/config');
|
|
const DotenvConfig = require('../utils/dotenvConfig');
|
|
|
|
// PACKAGES
|
|
const webpack = require('webpack');
|
|
const path = require('path');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const ESLintPlugin = require('eslint-webpack-plugin');
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
|
const StyleLintPlugin = require('stylelint-webpack-plugin');
|
|
|
|
const installPageProdConfig = {
|
|
entry: {
|
|
installPage: './src/installPage/installPage.js',
|
|
installPageStyles: './src/installPage/installPage.scss',
|
|
contentPageStyles: './src/content/styles/content_script.scss'
|
|
},
|
|
mode: 'production',
|
|
devtool: 'cheap-module-source-map',
|
|
target: 'web',
|
|
node: false,
|
|
output: {
|
|
path: path.join(__dirname, '../../public/installPage'),
|
|
filename: '[name].bundle.js'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /.js$/,
|
|
exclude: [/node_modules/],
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
babelrc: true,
|
|
cacheDirectory: false
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.s?css$/,
|
|
use: [
|
|
{ loader: MiniCssExtractPlugin.loader },
|
|
{ loader: 'css-loader', options: { importLoaders: 1 } },
|
|
{ loader: 'postcss-loader', options: { postcssOptions: { plugins: [require.resolve('autoprefixer')] } } },
|
|
{ loader: 'sass-loader' }
|
|
]
|
|
},
|
|
{
|
|
test: /notification-logo\.svg$/i,
|
|
type: 'asset/source'
|
|
},
|
|
{
|
|
test: /(jpe?g|png|svg)$/i,
|
|
exclude: [/notification-logo\.svg$/i],
|
|
type: 'asset/resource',
|
|
generator: {
|
|
filename: '../images/[name][ext]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.woff2$/,
|
|
type: 'asset/resource',
|
|
generator: {
|
|
filename: '../fonts/[name][ext]',
|
|
emit: false
|
|
}
|
|
}
|
|
]
|
|
},
|
|
externals: {
|
|
crypto: 'crypto',
|
|
constants: 'constants'
|
|
},
|
|
optimization: {
|
|
moduleIds: 'named',
|
|
removeAvailableModules: true,
|
|
removeEmptyChunks: true,
|
|
mergeDuplicateChunks: true,
|
|
minimizer: [
|
|
new TerserPlugin(),
|
|
new CssMinimizerPlugin()
|
|
]
|
|
},
|
|
resolve: {
|
|
modules: ['node_modules']
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
CONFIGURE_VIEW_FILENAME: process.env.EXT_PLATFORM === 'Safari' ? JSON.stringify('./safari.html') : JSON.stringify('./normal.html'),
|
|
CONFIGURE_VIEW_REGEXP: process.env.EXT_PLATFORM === 'Safari' ? /safari\.html$/ : /normal\.html$/
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['installPage', 'installPageStyles', 'contentPageStyles'],
|
|
title: '2FAS Browser Extension | Configuration',
|
|
path: './public/installPage',
|
|
filename: 'installPage.html',
|
|
inject: true,
|
|
hash: false,
|
|
minify: config.HTMLminify,
|
|
cache: true,
|
|
showErrors: true,
|
|
preload: '**/*.*',
|
|
prefetch: '**/*.*',
|
|
template: './src/installPage/installPage.html'
|
|
}),
|
|
new ESLintPlugin({
|
|
formatter: require('eslint-friendly-formatter'),
|
|
emitError: true,
|
|
emitWarning: true,
|
|
failOnWarning: false,
|
|
failOnError: false
|
|
}),
|
|
new MiniCssExtractPlugin({
|
|
filename: '[name].css'
|
|
}),
|
|
new StyleLintPlugin({
|
|
configFile: config.SCSSLintConfigFile,
|
|
failOnError: false
|
|
}),
|
|
new CopyWebpackPlugin(config.extPlatform[process.env.EXT_PLATFORM.toLowerCase()].filesList),
|
|
new webpack.ProvidePlugin({
|
|
global: require.resolve('../utils/global.js')
|
|
}),
|
|
DotenvConfig
|
|
]
|
|
};
|
|
|
|
module.exports = installPageProdConfig;
|