CyberChef/webpack.config.js

231 lines
7.3 KiB
JavaScript
Raw Normal View History

2017-07-03 23:15:57 +01:00
const webpack = require("webpack");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const { ModifySourcePlugin } = require("modify-source-webpack-plugin");
const path = require("path");
2017-07-03 23:15:57 +01:00
/**
* Webpack configuration details for use with Grunt.
*
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2017
* @license Apache-2.0
*/
const banner = `/**
* CyberChef - The Cyber Swiss Army Knife
*
2018-05-29 01:20:44 +01:00
* @copyright Crown Copyright 2016
* @license Apache-2.0
*
2018-05-29 01:20:44 +01:00
* Copyright 2016 Crown Copyright
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/`;
2017-07-03 23:15:57 +01:00
module.exports = {
output: {
publicPath: "",
2022-03-28 15:42:11 +01:00
globalObject: "this",
2024-02-24 22:59:51 -05:00
assetModuleFilename: "assets/[hash][ext][query]",
},
2017-07-03 23:15:57 +01:00
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
2020-12-11 16:24:39 +00:00
log: "loglevel",
2020-12-14 15:32:12 +00:00
// process and Buffer are no longer polyfilled in webpack 5 but
// many of our dependencies expect them, so it is easiest to just
// provide them everywhere as was the case in webpack 4-
process: "process",
2024-02-24 22:59:51 -05:00
Buffer: ["buffer", "Buffer"],
2017-07-03 23:15:57 +01:00
}),
new webpack.BannerPlugin({
banner: banner,
raw: true,
2024-02-24 22:59:51 -05:00
entryOnly: true,
2017-07-03 23:15:57 +01:00
}),
new webpack.DefinePlugin({
2020-12-14 17:51:12 +00:00
// Required by Jimp to improve loading speed in browsers
2024-02-24 22:59:51 -05:00
"process.browser": "true",
}),
new MiniCssExtractPlugin({
2024-02-24 22:59:51 -05:00
filename: "assets/[name].css",
}),
2020-12-11 16:24:39 +00:00
new CopyWebpackPlugin({
patterns: [
{
context: "src/core/vendor/",
from: "tesseract/**/*",
2024-02-24 22:59:51 -05:00
to: "assets/",
},
{
2020-12-11 16:24:39 +00:00
context: "node_modules/tesseract.js/",
from: "dist/worker.min.js",
2024-02-24 22:59:51 -05:00
to: "assets/tesseract",
},
{
2020-12-11 16:24:39 +00:00
context: "node_modules/tesseract.js-core/",
from: "tesseract-core.wasm.js",
2024-02-24 22:59:51 -05:00
to: "assets/tesseract",
},
{
context: "node_modules/node-forge/dist",
from: "prime.worker.min.js",
2024-02-24 22:59:51 -05:00
to: "assets/forge/",
},
],
}),
new ModifySourcePlugin({
rules: [
{
// Fix toSpare(0) bug in Split.js by avoiding gutter accomodation
test: /split\.es\.js$/,
modify: (src, path) =>
2024-02-24 22:59:51 -05:00
src.replace(
"if (pixelSize < elementMinSize)",
"if (false)",
),
},
],
}),
2017-07-03 23:15:57 +01:00
],
resolve: {
2020-12-11 16:24:39 +00:00
extensions: [".mjs", ".js", ".json"], // Allows importing files without extensions
2017-07-03 23:15:57 +01:00
alias: {
jquery: "jquery/src/jquery",
},
2020-12-11 16:24:39 +00:00
fallback: {
2024-02-24 22:59:51 -05:00
fs: false,
child_process: false,
net: false,
tls: false,
path: require.resolve("path/"),
buffer: require.resolve("buffer/"),
crypto: require.resolve("crypto-browserify"),
stream: require.resolve("stream-browserify"),
zlib: require.resolve("browserify-zlib"),
process: false,
},
2017-07-03 23:15:57 +01:00
},
module: {
2019-10-07 02:24:09 +08:00
// argon2-browser loads argon2.wasm by itself, so Webpack should not load it
2023-03-24 22:15:21 +00:00
noParse: /argon2\.wasm$/,
2017-07-03 23:15:57 +01:00
rules: [
{
2018-03-26 23:14:23 +01:00
test: /\.m?js$/,
2020-12-11 16:24:39 +00:00
exclude: /node_modules\/(?!crypto-api|bootstrap)/,
options: {
configFile: path.resolve(__dirname, "babel.config.js"),
cacheDirectory: true,
2024-02-24 22:59:51 -05:00
compact: false,
},
2018-05-15 17:36:45 +00:00
type: "javascript/auto",
2024-02-24 22:59:51 -05:00
loader: "babel-loader",
2017-07-03 23:15:57 +01:00
},
2018-05-14 18:23:16 +00:00
{
2023-03-24 22:15:21 +00:00
test: /node-forge/,
loader: "imports-loader",
options: {
2024-02-24 22:59:51 -05:00
additionalCode: "var jQuery = false;",
},
2023-03-24 22:15:21 +00:00
},
{
// Load argon2.wasm as base64-encoded binary file expected by argon2-browser
test: /argon2\.wasm$/,
loader: "base64-loader",
2024-02-24 22:59:51 -05:00
type: "javascript/auto",
2018-05-14 18:23:16 +00:00
},
{
test: /prime.worker.min.js$/,
2024-02-24 22:59:51 -05:00
type: "asset/source",
},
{
test: /bootstrap-material-design/,
2020-12-11 16:24:39 +00:00
loader: "imports-loader",
options: {
2024-02-24 22:59:51 -05:00
imports: "default popper.js/dist/umd/popper.js Popper",
},
2020-12-11 16:24:39 +00:00
},
2020-12-11 17:58:23 +00:00
{
test: /blueimp-load-image/,
loader: "imports-loader",
options: {
type: "commonjs",
2024-02-24 22:59:51 -05:00
imports: "single min-document document",
},
2020-12-11 17:58:23 +00:00
},
2017-07-03 23:15:57 +01:00
{
test: /\.css$/,
use: [
2019-04-14 21:55:52 +01:00
{
loader: MiniCssExtractPlugin.loader,
options: {
2024-02-24 22:59:51 -05:00
publicPath: "../",
},
2019-04-14 21:55:52 +01:00
},
"css-loader",
"postcss-loader",
2024-02-24 22:59:51 -05:00
],
2017-07-03 23:15:57 +01:00
},
{
test: /\.(ico|eot|ttf|woff|woff2)$/,
2022-03-28 15:42:11 +01:00
type: "asset/resource",
2017-07-03 23:15:57 +01:00
},
{
test: /\.svg$/,
2022-03-28 15:42:11 +01:00
type: "asset/inline",
},
2024-02-24 22:59:51 -05:00
{
// Store font .fnt and .png files in a separate fonts folder
2019-07-02 15:31:29 +01:00
test: /(\.fnt$|bmfonts\/.+\.png$)/,
2022-03-28 15:42:11 +01:00
type: "asset/resource",
generator: {
2024-02-24 22:59:51 -05:00
filename: "assets/fonts/[name][ext]",
},
2019-07-02 15:31:29 +01:00
},
2024-02-24 22:59:51 -05:00
{
// First party images are saved as files to be cached
test: /\.(png|jpg|gif)$/,
2019-07-02 15:31:29 +01:00
exclude: /(node_modules|bmfonts)/,
2022-03-28 15:42:11 +01:00
type: "asset/resource",
generator: {
2024-02-24 22:59:51 -05:00
filename: "images/[name][ext]",
},
2017-07-03 23:15:57 +01:00
},
2024-02-24 22:59:51 -05:00
{
// Third party images are inlined
test: /\.(png|jpg|gif)$/,
2017-07-03 23:15:57 +01:00
exclude: /web\/static/,
2022-03-28 15:42:11 +01:00
type: "asset/inline",
2017-07-03 23:15:57 +01:00
},
2024-02-24 22:59:51 -05:00
],
2017-07-03 23:15:57 +01:00
},
stats: {
children: false,
chunks: false,
modules: false,
2024-02-24 22:59:51 -05:00
entrypoints: false,
},
2022-03-28 15:42:11 +01:00
ignoreWarnings: [
/source-map/,
/source map/,
/dependency is an expression/,
/export 'default'/,
2024-02-24 22:59:51 -05:00
/Can't resolve 'sodium'/,
2022-03-28 15:42:11 +01:00
],
performance: {
2024-02-24 22:59:51 -05:00
hints: false,
},
2017-07-03 23:15:57 +01:00
};