2017-07-04 00:15:57 +02:00
|
|
|
const webpack = require("webpack");
|
2019-02-01 13:00:45 +01:00
|
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
2018-11-21 18:47:56 +01:00
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2017-07-17 00:33:47 +02:00
|
|
|
const banner = `/**
|
|
|
|
* CyberChef - The Cyber Swiss Army Knife
|
|
|
|
*
|
2018-05-29 02:20:44 +02:00
|
|
|
* @copyright Crown Copyright 2016
|
2017-07-17 00:33:47 +02:00
|
|
|
* @license Apache-2.0
|
|
|
|
*
|
2018-05-29 02:20:44 +02:00
|
|
|
* Copyright 2016 Crown Copyright
|
2017-07-17 00:33:47 +02:00
|
|
|
*
|
|
|
|
* 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",
|
2017-12-28 19:17:38 +01:00
|
|
|
log: "loglevel"
|
2017-07-04 00:15:57 +02:00
|
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
|
|
banner: banner,
|
|
|
|
raw: true,
|
|
|
|
entryOnly: true
|
|
|
|
}),
|
2018-12-20 15:46:24 +01:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
"process.browser": "true"
|
|
|
|
}),
|
2019-02-01 13:00:45 +01:00
|
|
|
new MiniCssExtractPlugin({
|
2019-02-11 19:44:41 +01:00
|
|
|
filename: "[name].css"
|
2019-02-01 13:00:45 +01:00
|
|
|
}),
|
2017-07-04 00:15:57 +02:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
jquery: "jquery/src/jquery"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
2018-03-27 00:14:23 +02:00
|
|
|
test: /\.m?js$/,
|
2018-05-17 17:11:34 +02:00
|
|
|
exclude: /node_modules\/(?!jsesc|crypto-api)/,
|
2018-11-21 18:47:56 +01:00
|
|
|
options: {
|
|
|
|
configFile: path.resolve(__dirname, "babel.config.js"),
|
|
|
|
cacheDirectory: true,
|
|
|
|
compact: false
|
|
|
|
},
|
2018-05-15 19:36:45 +02:00
|
|
|
type: "javascript/auto",
|
2018-11-21 18:47:56 +01:00
|
|
|
loader: "babel-loader"
|
2017-07-04 00:15:57 +02:00
|
|
|
},
|
2017-09-17 14:47:33 +02:00
|
|
|
{
|
2018-05-14 20:23:16 +02:00
|
|
|
test: /forge.min.js$/,
|
|
|
|
loader: "imports-loader?jQuery=>null"
|
|
|
|
},
|
2018-06-09 11:43:36 +02:00
|
|
|
{
|
|
|
|
test: /bootstrap-material-design/,
|
|
|
|
loader: "imports-loader?Popper=popper.js/dist/umd/popper.js"
|
2017-09-17 14:47:33 +02:00
|
|
|
},
|
2017-07-04 00:15:57 +02:00
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2019-02-01 13:00:45 +01:00
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
"css-loader",
|
|
|
|
"postcss-loader",
|
|
|
|
]
|
2017-07-04 00:15:57 +02:00
|
|
|
},
|
|
|
|
{
|
2018-06-09 11:43:36 +02:00
|
|
|
test: /\.scss$/,
|
2019-02-01 13:00:45 +01:00
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
"css-loader",
|
|
|
|
"sass-loader",
|
|
|
|
]
|
2017-07-04 00:15:57 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(ico|eot|ttf|woff|woff2)$/,
|
|
|
|
loader: "url-loader",
|
|
|
|
options: {
|
|
|
|
limit: 10000
|
|
|
|
}
|
|
|
|
},
|
2019-02-28 18:50:10 +01:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
|
|
|
loader: "svg-url-loader",
|
|
|
|
options: {
|
|
|
|
encoding: "base64"
|
|
|
|
}
|
|
|
|
},
|
2017-07-04 00:15:57 +02:00
|
|
|
{ // First party images are saved as files to be cached
|
2019-02-28 18:50:10 +01:00
|
|
|
test: /\.(png|jpg|gif)$/,
|
2017-07-04 00:15:57 +02:00
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: "file-loader",
|
|
|
|
options: {
|
|
|
|
name: "images/[name].[ext]"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ // Third party images are inlined
|
2019-02-28 18:50:10 +01:00
|
|
|
test: /\.(png|jpg|gif)$/,
|
2017-07-04 00:15:57 +02:00
|
|
|
exclude: /web\/static/,
|
|
|
|
loader: "url-loader",
|
|
|
|
options: {
|
|
|
|
limit: 10000
|
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
stats: {
|
|
|
|
children: false,
|
2017-09-17 14:47:33 +02:00
|
|
|
chunks: false,
|
|
|
|
modules: false,
|
2018-03-01 20:45:34 +01:00
|
|
|
entrypoints: false,
|
2018-10-10 17:49:07 +02:00
|
|
|
warningsFilter: [
|
|
|
|
/source-map/,
|
|
|
|
/dependency is an expression/,
|
|
|
|
/export 'default'/
|
|
|
|
],
|
2017-09-17 14:47:33 +02:00
|
|
|
},
|
2017-09-17 15:53:17 +02:00
|
|
|
node: {
|
|
|
|
fs: "empty"
|
2018-03-01 20:45:34 +01:00
|
|
|
},
|
|
|
|
performance: {
|
|
|
|
hints: false
|
2017-09-17 15:53:17 +02:00
|
|
|
}
|
2017-07-04 00:15:57 +02:00
|
|
|
};
|