CyberChef/webpack.config.js

225 lines
6.8 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 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 = {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
2020-12-11 17:24:39 +01:00
log: "loglevel",
process: "process"
2017-07-04 00:15:57 +02:00
}),
new webpack.BannerPlugin({
banner: banner,
raw: true,
entryOnly: true
}),
new webpack.DefinePlugin({
"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"
}
]
})
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,
"path": false,
"crypto": require.resolve("crypto-browserify"),
"stream": require.resolve("stream-browserify"),
"zlib": require.resolve("browserify-zlib")
}
2017-07-04 00:15:57 +02:00
},
module: {
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
{
2020-12-11 18:58:23 +01:00
test: /node-forge/,
2020-12-11 17:24:39 +01:00
loader: "imports-loader",
options: {
additionalCode: "var jQuery = false;"
}
2018-05-14 20:23:16 +02:00
},
{
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"
}
},
{
test: /avsc/,
loader: "imports-loader",
options: {
type: "commonjs",
imports: "multiple buffer Buffer Buffer"
}
},
2020-12-11 18:58:23 +01:00
{
test: /blueimp-load-image/,
loader: "imports-loader",
options: {
type: "commonjs",
imports: "nodom",
additionalCode: "var document = new nodom.Document();"
}
},
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: /\.scss$/,
use: [
2019-04-14 22:55:52 +02:00
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "../"
}
},
"css-loader",
"sass-loader",
]
2017-07-04 00:15:57 +02:00
},
/**
* The limit for these files has been increased to 60,000 (60KB)
* to ensure the material icons font is inlined.
*
* See: https://github.com/gchq/CyberChef/issues/612
*/
2017-07-04 00:15:57 +02:00
{
test: /\.(ico|eot|ttf|woff|woff2)$/,
loader: "url-loader",
options: {
limit: 60000,
2019-04-14 22:55:52 +02:00
name: "[hash].[ext]",
outputPath: "assets"
2017-07-04 00:15:57 +02:00
}
},
{
test: /\.svg$/,
loader: "svg-url-loader",
options: {
encoding: "base64"
}
},
2019-07-02 16:31:29 +02:00
{ // Store font .fnt and .png files in a separate fonts folder
test: /(\.fnt$|bmfonts\/.+\.png$)/,
loader: "file-loader",
options: {
name: "[name].[ext]",
outputPath: "assets/fonts"
}
},
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)/,
2017-07-04 00:15:57 +02:00
loader: "file-loader",
options: {
name: "images/[name].[ext]"
}
},
{ // Third party images are inlined
test: /\.(png|jpg|gif)$/,
2017-07-04 00:15:57 +02:00
exclude: /web\/static/,
loader: "url-loader",
options: {
2019-04-14 22:55:52 +02:00
limit: 10000,
name: "[hash].[ext]",
outputPath: "assets"
2017-07-04 00:15:57 +02:00
}
},
]
},
stats: {
children: false,
chunks: false,
modules: false,
entrypoints: false,
2018-10-10 17:49:07 +02:00
warningsFilter: [
/source-map/,
/dependency is an expression/,
2019-03-30 15:56:43 +01:00
/export 'default'/,
/Can't resolve 'sodium'/
2018-10-10 17:49:07 +02:00
],
},
performance: {
hints: false
2017-09-17 15:53:17 +02:00
}
2017-07-04 00:15:57 +02:00
};