ultrawidify/webpack.config.js

246 lines
8.4 KiB
JavaScript
Raw Permalink Normal View History

const webpack = require('webpack');
const ejs = require('ejs');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const WebpackShellPlugin = require('webpack-shell-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ChromeExtensionReloader = require('webpack-chrome-extension-reloader');
const { VueLoaderPlugin } = require('vue-loader');
const path = require('path');
const config = {
2023-10-21 17:41:09 +02:00
watchOptions: {
ignored: /node_modules/
},
mode: process.env.NODE_ENV,
devtool: `${process.env.CHANNEL === 'stable' ? undefined : "inline-source-map"}`,
context: __dirname + '/src',
entry: {
'ext/uw': './ext/uw.js',
2023-07-10 22:00:53 +02:00
'uw-bg': './uw-bg.js',
'csui/csui-popup': './csui/csui-popup.js',
'csui/csui': './csui/csui.js',
// 'install/first-time/first-time':'./install/first-time/first-time.js',
},
output: {
2020-02-08 00:09:07 +01:00
path: __dirname + `/dist-${process.env.BROWSER == 'firefox' ? 'ff' : process.env.BROWSER}`,
filename: '[name].js',
},
2021-02-08 20:55:17 +01:00
devtool: "source-map",
resolve: {
// maybe we'll move vue stuff to TS some day, but today is not the day
extensions: [
2021-02-08 20:55:17 +01:00
'.ts', '.tsx',
'.js', '.vue'
],
},
module: {
rules: [
2021-10-22 00:30:36 +02:00
{
2021-02-08 22:45:41 +01:00
test: /\.ts$/,
2021-02-08 20:55:17 +01:00
loader: 'ts-loader',
2021-02-08 22:45:41 +01:00
exclude: /node_modules/
2021-02-08 20:55:17 +01:00
},
{
test: /\.vue$/,
loaders: 'vue-loader',
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(sc|c)ss$/,
use: [
// MiniCssExtractPlugin.loader,
'vue-style-loader',
{
loader: 'css-loader',
// modules: {
// localIdentName: "[name]-[hash]"
// }
// options: {
// modules: true,
// // localIdentName: "🔶uw_[local]"
// localIdentName: "[name]-[hash]"
// // localIdentName: "uw_[local]"
// }
},
{
loader: 'sass-loader',
options: {
sourceMap: true
}
}
],
},
// {
// test: /\.scss$/,
// use: [
// // MiniCssExtractPlugin.loader,
// 'css-loader',
// // {
// // loader: 'css-loader',
// // // options: {
// // // modules: true,
// // // localIdentName: "🔶uw_[local]"
// // // }
// // },
// 'sass-loader'
// ],
// },
{
test: /\.(png|jpg|gif|svg|ico)$/,
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
},
},
{
test: /\.(woff(2)?)$/,
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
},
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader"
},
],
},
plugins: [
new VueLoaderPlugin(),
new MiniCssExtractPlugin({
filename: '[name].css',
}),
new CopyWebpackPlugin([
{ from: 'res', to: 'res', ignore: ['css', 'css/**']},
{ from: 'ext', to: 'ext', ignore: ['conf/*', 'lib/**']},
{ from: 'csui', to: 'csui', ignore: ['src']},
// we need to get webextension-polyfill and put it in common/lib
{ from: '../node_modules/webextension-polyfill/dist/browser-polyfill.js', to: 'common/lib/browser-polyfill.js'},
// This is extension icon, as used on extension lists and/or extension's action button
2021-10-22 00:30:36 +02:00
// This folder does not contain any GUI icons — these are in /res/icons.
// (TODO: check if this copy is even necessary — /icons has same content as /res/icons)
{ from: 'icons', to: 'icons', ignore: ['icon.xcf'] },
{ from: 'csui/csui-popup.html', to: 'csui/csui-popup.html', transform: transformHtml },
2024-06-05 01:08:50 +02:00
{ from: 'csui/csui-overlay-normal.html', to: 'csui/csui.html', transform: transformHtml },
{ from: 'csui/csui-overlay-dark.html', to: 'csui/csui-dark.html', transform: transformHtml },
{ from: 'csui/csui-overlay-light.html', to: 'csui/csui-light.html', transform: transformHtml },
// { from: 'install/first-time/first-time.html', to: 'install/first-time/first-time.html', transform: transformHtml},
{
from: 'manifest.json',
to: 'manifest.json',
transform: (content) => {
const jsonContent = JSON.parse(content);
// jsonContent.version = version;
2023-07-10 22:00:53 +02:00
// if (config.mode === 'development') {
// jsonContent['content_security_policy'] = "script-src 'self' 'unsafe-eval'; object-src 'self'";
// }
2019-11-28 23:37:26 +01:00
if (process.env.CHANNEL === 'nightly') {
jsonContent.name = "Ultrawidify - nightly";
2019-11-29 00:12:31 +01:00
jsonContent.description = "FOR TESTING ONLY -- THIS BUILD USES ONLY THE FRESHEST COMMITS FROM GITHUB AND MAY THEREFORE BE COMPLETELY BROKEN";
2019-11-28 23:37:26 +01:00
// version numbers for nightly builds: YYMM.DD.BUILD_NUMBER
jsonContent.version = `${new Date()
.toISOString() // YYYY-MM-DDTHH:MM:SS...
.split('T')[0] // gives YYYY-MM-DD
.substr(2) // YYYY -> YY
.replace('-', '') // YY-MM-DD -> YYMM-DD
.replace('-', '.') // YYMM-DD -> YYMM.DD
2021-01-30 12:21:04 +01:00
}.${process.env.BUILD_NUMBER === undefined ? 0 : process.env.BUILD_NUMBER}`;
2019-11-28 23:37:26 +01:00
jsonContent.browser_action.default_title = "Ultrawidify Nightly";
2021-10-22 00:30:36 +02:00
// because we don't want web-ext to submit this as proper release
2019-12-03 02:01:29 +01:00
delete jsonContent.applications;
} else if (process.env.CHANNEL === 'testing') {
jsonContent.name = "Ultrawidify - testing";
jsonContent.description = "FOR TESTING ONLY -- this build is intended for testing a fix of certain bugs. It's not fit for normal use.";
// version numbers for nightly builds: YYMM.DD.BUILD_NUMBER
jsonContent.version = `${new Date()
.toISOString() // YYYY-MM-DDTHH:MM:SS...
.split('T')[0] // gives YYYY-MM-DD
.substr(2) // YYYY -> YY
.replace('-', '') // YY-MM-DD -> YYMM-DD
.replace('-', '.') // YYMM-DD -> YYMM.DD
2021-01-30 12:21:04 +01:00
}.${process.env.BUILD_NUMBER === undefined ? 0 : process.env.BUILD_NUMBER}`;
2019-12-03 02:01:29 +01:00
jsonContent.browser_action.default_title = "Ultrawidify Testing";
2021-10-22 00:30:36 +02:00
// because we don't want web-ext to submit this as proper release
2019-11-29 00:31:20 +01:00
delete jsonContent.applications;
2019-11-28 23:37:26 +01:00
}
2019-05-09 21:10:45 +02:00
if (process.env.BROWSER !== 'firefox') {
jsonContent.version = jsonContent.version.replace(/[a-zA-Z-]/g, '');
2023-10-21 17:41:09 +02:00
try {
delete jsonContent.options_ui.browser_style;
} catch (e) { }
try {
delete jsonContent.background.scripts;
} catch (e) {}
2023-07-10 22:00:53 +02:00
} else {
delete jsonContent.background.service_worker;
2019-05-09 21:10:45 +02:00
}
return JSON.stringify(jsonContent, null, 2);
},
},
]),
new WebpackShellPlugin({
onBuildEnd: ['node scripts/remove-evals.js'],
}),
2019-05-09 21:10:45 +02:00
new webpack.DefinePlugin({
'process.env.BROWSER': JSON.stringify(process.env.BROWSER),
2021-06-13 02:19:05 +02:00
'process.env.CHANNEL': JSON.stringify(process.env.CHANNEL),
'__VUE_OPTIONS_API__': true,
'__VUE_PROD_DEVTOOLS__': false,
'__VUE_PROD_HYDRATION_MISMATCH_DETAILS__': true
2019-05-09 21:10:45 +02:00
})
],
2020-02-14 20:55:20 +01:00
optimization: {
// minimize: false,
// occurrenceOrder: false,
// providedExports: false,
// usedExports: false,
// concatenateModules: false,
// sideEffects: false,
2020-02-14 20:55:20 +01:00
}
};
if (config.mode === 'production') {
config.plugins = (config.plugins || []).concat([
new webpack.DefinePlugin({
2021-06-13 02:19:05 +02:00
'__VUE_OPTIONS_API__': true,
'__VUE_PROD_DEVTOOLS__': false,
2021-10-22 00:30:36 +02:00
'process.env': {
NODE_ENV: '"production"',
},
2019-05-09 21:10:45 +02:00
})
]);
}
if (process.env.HMR === 'true') {
config.plugins = (config.plugins || []).concat([
new ChromeExtensionReloader(),
]);
}
function transformHtml(content) {
return ejs.render(content.toString(), {
...process.env,
});
}
module.exports = config;