CyberChef/webpack.config.js

223 lines
7.1 KiB
JavaScript
Raw Normal View History

2017-07-04 00:15:57 +02: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-04 00:15:57 +02: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 02:20:44 +02:00
* @copyright Crown Copyright 2016
* @license Apache-2.0
*
2018-05-29 02:20:44 +02: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-04 00:15:57 +02:00
2018-11-05 13:48:22 +01:00
2017-07-04 00:15:57 +02:00
module.exports = {
output: {
publicPath: "",
2022-03-28 16:42:11 +02:00
globalObject: "this",
assetModuleFilename: "assets/[hash][ext][query]"
},
2017-07-04 00:15:57 +02:00
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
2020-12-11 17:24:39 +01:00
log: "loglevel",
2020-12-14 16:32:12 +01: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",
Buffer: ["buffer", "Buffer"]
2017-07-04 00:15:57 +02:00
}),
new webpack.BannerPlugin({
banner: banner,
raw: true,
entryOnly: true
}),
new webpack.DefinePlugin({
2020-12-14 18:51:12 +01:00
// Required by Jimp to improve loading speed in browsers
"process.browser": "true"
}),
new MiniCssExtractPlugin({
2019-04-14 22:55:52 +02:00
filename: "assets/[name].css"
}),
2020-12-11 17:24:39 +01:00
new CopyWebpackPlugin({
patterns: [
{
context: "src/core/vendor/",
from: "tesseract/**/*",
to: "assets/"
}, {
context: "node_modules/tesseract.js/",
from: "dist/worker.min.js",
to: "assets/tesseract"
}, {
context: "node_modules/tesseract.js-core/",
from: "tesseract-core.wasm.js",
to: "assets/tesseract"
}, {
context: "node_modules/node-forge/dist",
from: "prime.worker.min.js",
to: "assets/forge/"
2020-12-11 17:24:39 +01:00
}
]
}),
new ModifySourcePlugin({
rules: [
{
// Fix toSpare(0) bug in Split.js by avoiding gutter accomodation
test: /split\.es\.js$/,
modify: (src, path) =>
src.replace("if (pixelSize < elementMinSize)", "if (false)")
}
]
2020-12-11 17:24:39 +01:00
})
2017-07-04 00:15:57 +02:00
],
resolve: {
2020-12-11 17:24:39 +01:00
extensions: [".mjs", ".js", ".json"], // Allows importing files without extensions
2017-07-04 00:15:57 +02:00
alias: {
jquery: "jquery/src/jquery",
},
2020-12-11 17:24:39 +01:00
fallback: {
"fs": false,
"child_process": false,
"net": false,
"tls": false,
2020-12-14 18:51:12 +01:00
"path": require.resolve("path/"),
"buffer": require.resolve("buffer/"),
2020-12-11 17:24:39 +01:00
"crypto": require.resolve("crypto-browserify"),
"stream": require.resolve("stream-browserify"),
"zlib": require.resolve("browserify-zlib"),
"process": false
2020-12-11 17:24:39 +01:00
}
2017-07-04 00:15:57 +02:00
},
module: {
2019-10-06 20:24:09 +02:00
// argon2-browser loads argon2.wasm by itself, so Webpack should not load it
2023-03-24 23:15:21 +01:00
noParse: /argon2\.wasm$/,
2017-07-04 00:15:57 +02:00
rules: [
{
2018-03-27 00:14:23 +02:00
test: /\.m?js$/,
2020-12-11 17:24:39 +01:00
exclude: /node_modules\/(?!crypto-api|bootstrap)/,
options: {
configFile: path.resolve(__dirname, "babel.config.js"),
cacheDirectory: true,
compact: false
},
2018-05-15 19:36:45 +02:00
type: "javascript/auto",
loader: "babel-loader"
2017-07-04 00:15:57 +02:00
},
2018-05-14 20:23:16 +02:00
{
2023-03-24 23:15:21 +01:00
test: /node-forge/,
loader: "imports-loader",
options: {
additionalCode: "var jQuery = false;"
}
},
{
// Load argon2.wasm as base64-encoded binary file expected by argon2-browser
test: /argon2\.wasm$/,
loader: "base64-loader",
2019-10-06 20:24:09 +02:00
type: "javascript/auto"
2018-05-14 20:23:16 +02:00
},
{
test: /prime.worker.min.js$/,
2022-03-28 16:42:11 +02:00
type: "asset/source"
},
{
test: /bootstrap-material-design/,
2020-12-11 17:24:39 +01:00
loader: "imports-loader",
options: {
imports: "default popper.js/dist/umd/popper.js Popper"
}
},
2020-12-11 18:58:23 +01:00
{
test: /blueimp-load-image/,
loader: "imports-loader",
options: {
type: "commonjs",
2021-01-22 12:04:45 +01:00
imports: "single min-document document"
2020-12-11 18:58:23 +01:00
}
},
2017-07-04 00:15:57 +02:00
{
test: /\.css$/,
use: [
2019-04-14 22:55:52 +02:00
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "../"
}
},
"css-loader",
"postcss-loader",
]
2017-07-04 00:15:57 +02:00
},
{
test: /\.(ico|eot|ttf|woff|woff2)$/,
2022-03-28 16:42:11 +02:00
type: "asset/resource",
2017-07-04 00:15:57 +02:00
},
{
test: /\.svg$/,
2022-03-28 16:42:11 +02:00
type: "asset/inline",
},
2019-07-02 16:31:29 +02:00
{ // Store font .fnt and .png files in a separate fonts folder
test: /(\.fnt$|bmfonts\/.+\.png$)/,
2022-03-28 16:42:11 +02:00
type: "asset/resource",
generator: {
filename: "assets/fonts/[name][ext]"
2019-07-02 16:31:29 +02:00
}
},
2017-07-04 00:15:57 +02:00
{ // First party images are saved as files to be cached
test: /\.(png|jpg|gif)$/,
2019-07-02 16:31:29 +02:00
exclude: /(node_modules|bmfonts)/,
2022-03-28 16:42:11 +02:00
type: "asset/resource",
generator: {
filename: "images/[name][ext]"
2017-07-04 00:15:57 +02:00
}
},
{ // Third party images are inlined
test: /\.(png|jpg|gif)$/,
2017-07-04 00:15:57 +02:00
exclude: /web\/static/,
2022-03-28 16:42:11 +02:00
type: "asset/inline",
2017-07-04 00:15:57 +02:00
},
]
},
stats: {
children: false,
chunks: false,
modules: false,
2022-03-28 16:42:11 +02:00
entrypoints: false
},
2022-03-28 16:42:11 +02:00
ignoreWarnings: [
/source-map/,
/source map/,
/dependency is an expression/,
/export 'default'/,
/Can't resolve 'sodium'/
],
performance: {
hints: false
2017-09-17 15:53:17 +02:00
}
2017-07-04 00:15:57 +02:00
};