2017-09-22 18:05:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-13 20:00:55 +02:00
|
|
|
const webpack = require("webpack");
|
|
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
2018-12-26 00:58:00 +01:00
|
|
|
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
2018-03-27 00:14:23 +02:00
|
|
|
const glob = require("glob");
|
|
|
|
const path = require("path");
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2022-01-31 11:31:19 +01:00
|
|
|
const nodeFlags = "--experimental-modules --experimental-json-modules --experimental-specifier-resolution=node --no-warnings --no-deprecation";
|
|
|
|
|
2017-07-04 00:15:57 +02:00
|
|
|
/**
|
|
|
|
* Grunt configuration for building the app in various formats.
|
|
|
|
*
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2017
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2017-03-23 01:33:40 +01:00
|
|
|
module.exports = function (grunt) {
|
2016-11-28 11:42:58 +01:00
|
|
|
grunt.file.defaultEncoding = "utf8";
|
|
|
|
grunt.file.preserveBOM = false;
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
// Tasks
|
|
|
|
grunt.registerTask("dev",
|
|
|
|
"A persistent task which creates a development build whenever source files are modified.",
|
2018-08-29 20:21:46 +02:00
|
|
|
["clean:dev", "clean:config", "exec:generateConfig", "concurrent:dev"]);
|
2017-03-21 23:41:44 +01:00
|
|
|
|
2019-07-09 15:31:18 +02:00
|
|
|
grunt.registerTask("prod",
|
|
|
|
"Creates a production-ready build. Use the --msg flag to add a compile message.",
|
|
|
|
[
|
2019-11-21 15:13:36 +01:00
|
|
|
"eslint", "clean:prod", "clean:config", "exec:generateConfig", "findModules", "webpack:web",
|
2023-03-21 16:39:31 +01:00
|
|
|
"copy:standalone", "zip:standalone", "clean:standalone", "exec:calcDownloadHash", "chmod"
|
2019-07-09 15:31:18 +02:00
|
|
|
]);
|
|
|
|
|
2017-03-21 23:41:44 +01:00
|
|
|
grunt.registerTask("node",
|
|
|
|
"Compiles CyberChef into a single NodeJS module.",
|
2019-07-09 15:31:18 +02:00
|
|
|
[
|
2019-07-19 14:14:32 +02:00
|
|
|
"clean:node", "clean:config", "clean:nodeConfig", "exec:generateConfig", "exec:generateNodeIndex"
|
2019-07-09 15:31:18 +02:00
|
|
|
]);
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2020-03-13 15:59:48 +01:00
|
|
|
grunt.registerTask("configTests",
|
2020-03-17 09:40:15 +01:00
|
|
|
"A task which configures config files in preparation for tests to be run. Use `npm test` to run tests.",
|
2019-07-09 15:31:18 +02:00
|
|
|
[
|
2020-03-13 15:59:48 +01:00
|
|
|
"clean:config", "clean:nodeConfig", "exec:generateConfig", "exec:generateNodeIndex"
|
2019-07-09 15:31:18 +02:00
|
|
|
]);
|
2018-12-29 03:58:05 +01:00
|
|
|
|
|
|
|
grunt.registerTask("testui",
|
2018-12-30 01:26:28 +01:00
|
|
|
"A task which runs all the UI tests in the tests directory. The prod task must already have been run.",
|
2018-12-30 00:46:13 +01:00
|
|
|
["connect:prod", "exec:browserTests"]);
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2019-08-02 12:10:15 +02:00
|
|
|
grunt.registerTask("testnodeconsumer",
|
|
|
|
"A task which checks whether consuming CJS and ESM apps work with the CyberChef build",
|
2022-03-28 11:52:28 +02:00
|
|
|
["exec:setupNodeConsumers", "exec:testCJSNodeConsumer", "exec:testESMNodeConsumer", "exec:teardownNodeConsumers"]);
|
2019-08-02 12:10:15 +02:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
grunt.registerTask("default",
|
2017-03-29 22:51:42 +02:00
|
|
|
"Lints the code base",
|
|
|
|
["eslint", "exec:repoSize"]);
|
2016-12-14 17:39:17 +01:00
|
|
|
|
|
|
|
grunt.registerTask("lint", "eslint");
|
|
|
|
|
2019-11-21 15:13:36 +01:00
|
|
|
grunt.registerTask("findModules",
|
|
|
|
"Finds all generated modules and updates the entry point list for Webpack",
|
|
|
|
function(arg1, arg2) {
|
|
|
|
const moduleEntryPoints = listEntryModules();
|
|
|
|
|
|
|
|
grunt.log.writeln(`Found ${Object.keys(moduleEntryPoints).length} modules.`);
|
|
|
|
|
|
|
|
grunt.config.set("webpack.web.entry",
|
|
|
|
Object.assign({
|
|
|
|
main: "./src/web/index.js"
|
|
|
|
}, moduleEntryPoints));
|
|
|
|
});
|
|
|
|
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
// Load tasks provided by each plugin
|
2016-12-14 17:39:17 +01:00
|
|
|
grunt.loadNpmTasks("grunt-eslint");
|
2017-03-27 17:08:36 +02:00
|
|
|
grunt.loadNpmTasks("grunt-webpack");
|
2016-11-28 11:42:58 +01:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
|
|
|
grunt.loadNpmTasks("grunt-contrib-copy");
|
2018-05-06 13:24:01 +02:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-watch");
|
2016-11-28 11:42:58 +01:00
|
|
|
grunt.loadNpmTasks("grunt-chmod");
|
|
|
|
grunt.loadNpmTasks("grunt-exec");
|
2017-09-17 14:47:33 +02:00
|
|
|
grunt.loadNpmTasks("grunt-concurrent");
|
2018-12-30 00:46:13 +01:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-connect");
|
2019-04-12 19:54:31 +02:00
|
|
|
grunt.loadNpmTasks("grunt-zip");
|
2016-12-14 17:39:17 +01:00
|
|
|
|
|
|
|
|
2017-03-27 17:08:36 +02:00
|
|
|
// Project configuration
|
2024-04-05 19:09:07 +02:00
|
|
|
const compileYear = grunt.template.today("UTC:yyyy"),
|
|
|
|
compileTime = grunt.template.today("UTC:dd/mm/yyyy HH:MM:ss") + " UTC",
|
2017-07-04 00:15:57 +02:00
|
|
|
pkg = grunt.file.readJSON("package.json"),
|
|
|
|
webpackConfig = require("./webpack.config.js"),
|
|
|
|
BUILD_CONSTANTS = {
|
2024-04-05 19:09:07 +02:00
|
|
|
COMPILE_YEAR: JSON.stringify(compileYear),
|
2017-07-04 00:15:57 +02:00
|
|
|
COMPILE_TIME: JSON.stringify(compileTime),
|
|
|
|
COMPILE_MSG: JSON.stringify(grunt.option("compile-msg") || grunt.option("msg") || ""),
|
2017-09-20 01:37:57 +02:00
|
|
|
PKG_VERSION: JSON.stringify(pkg.version),
|
2017-08-09 21:09:23 +02:00
|
|
|
},
|
2019-08-02 12:10:15 +02:00
|
|
|
moduleEntryPoints = listEntryModules(),
|
2019-11-21 15:13:36 +01:00
|
|
|
nodeConsumerTestPath = "~/tmp-cyberchef",
|
|
|
|
/**
|
|
|
|
* Configuration for Webpack production build. Defined as a function so that it
|
|
|
|
* can be recalculated when new modules are generated.
|
|
|
|
*/
|
|
|
|
webpackProdConf = () => {
|
|
|
|
return {
|
|
|
|
mode: "production",
|
|
|
|
target: "web",
|
|
|
|
entry: Object.assign({
|
|
|
|
main: "./src/web/index.js"
|
|
|
|
}, moduleEntryPoints),
|
|
|
|
output: {
|
|
|
|
path: __dirname + "/build/prod",
|
|
|
|
filename: chunkData => {
|
|
|
|
return chunkData.chunk.name === "main" ? "assets/[name].js": "[name].js";
|
|
|
|
},
|
|
|
|
globalObject: "this"
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
"./config/modules/OpModules.mjs": "./config/modules/Default.mjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.DefinePlugin(BUILD_CONSTANTS),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
filename: "index.html",
|
|
|
|
template: "./src/web/html/index.html",
|
|
|
|
chunks: ["main"],
|
2024-04-05 19:09:07 +02:00
|
|
|
compileYear: compileYear,
|
2019-11-21 15:13:36 +01:00
|
|
|
compileTime: compileTime,
|
|
|
|
version: pkg.version,
|
|
|
|
minify: {
|
|
|
|
removeComments: true,
|
|
|
|
collapseWhitespace: true,
|
|
|
|
minifyJS: true,
|
|
|
|
minifyCSS: true
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BundleAnalyzerPlugin({
|
|
|
|
analyzerMode: "static",
|
|
|
|
reportFilename: "BundleAnalyzerReport.html",
|
|
|
|
openAnalyzer: false
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
};
|
|
|
|
};
|
2016-11-28 11:42:58 +01:00
|
|
|
|
2016-12-14 17:39:17 +01:00
|
|
|
|
2017-08-09 21:09:23 +02:00
|
|
|
/**
|
|
|
|
* Generates an entry list for all the modules.
|
|
|
|
*/
|
|
|
|
function listEntryModules() {
|
2018-04-02 18:10:51 +02:00
|
|
|
const entryModules = {};
|
2017-08-09 21:09:23 +02:00
|
|
|
|
2018-03-27 00:14:23 +02:00
|
|
|
glob.sync("./src/core/config/modules/*.mjs").forEach(file => {
|
|
|
|
const basename = path.basename(file);
|
|
|
|
if (basename !== "Default.mjs" && basename !== "OpModules.mjs")
|
2019-04-12 19:54:31 +02:00
|
|
|
entryModules["modules/" + basename.split(".mjs")[0]] = path.resolve(file);
|
2017-08-09 21:09:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return entryModules;
|
|
|
|
}
|
|
|
|
|
2019-10-16 17:32:06 +02:00
|
|
|
/**
|
|
|
|
* Detects the correct delimiter to use to chain shell commands together
|
|
|
|
* based on the current OS.
|
|
|
|
*
|
|
|
|
* @param {string[]} cmds
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
function chainCommands(cmds) {
|
|
|
|
const win = process.platform === "win32";
|
|
|
|
if (!win) {
|
|
|
|
return cmds.join(";");
|
|
|
|
}
|
|
|
|
return cmds
|
|
|
|
// && means that subsequent commands will not be executed if the
|
|
|
|
// previous one fails. & would coninue on a fail
|
|
|
|
.join("&&")
|
|
|
|
// Windows does not support \n properly
|
2021-02-10 14:13:19 +01:00
|
|
|
.replace(/\n/g, "\\n");
|
2019-10-16 17:32:06 +02:00
|
|
|
}
|
|
|
|
|
2016-11-28 11:42:58 +01:00
|
|
|
grunt.initConfig({
|
2017-03-27 17:08:36 +02:00
|
|
|
clean: {
|
2018-03-26 23:25:36 +02:00
|
|
|
dev: ["build/dev/*"],
|
2018-03-27 00:14:23 +02:00
|
|
|
prod: ["build/prod/*"],
|
|
|
|
node: ["build/node/*"],
|
2019-07-09 15:31:18 +02:00
|
|
|
config: ["src/core/config/OperationConfig.json", "src/core/config/modules/*", "src/code/operations/index.mjs"],
|
|
|
|
nodeConfig: ["src/node/index.mjs", "src/node/config/OperationConfig.json"],
|
2019-04-12 19:54:31 +02:00
|
|
|
standalone: ["build/prod/CyberChef*.html"]
|
2017-03-27 17:08:36 +02:00
|
|
|
},
|
2016-12-14 17:39:17 +01:00
|
|
|
eslint: {
|
2018-12-30 00:46:13 +01:00
|
|
|
configs: ["*.{js,mjs}"],
|
2018-04-11 19:29:02 +02:00
|
|
|
core: ["src/core/**/*.{js,mjs}", "!src/core/vendor/**/*", "!src/core/operations/legacy/**/*"],
|
2019-03-28 00:02:10 +01:00
|
|
|
web: ["src/web/**/*.{js,mjs}", "!src/web/static/**/*"],
|
2018-03-27 00:14:23 +02:00
|
|
|
node: ["src/node/**/*.{js,mjs}"],
|
2018-12-28 22:49:40 +01:00
|
|
|
tests: ["tests/**/*.{js,mjs}"],
|
2016-11-28 11:42:58 +01:00
|
|
|
},
|
2017-03-21 23:41:44 +01:00
|
|
|
webpack: {
|
2023-07-14 19:53:56 +02:00
|
|
|
options: webpackConfig,
|
2023-07-14 19:37:02 +02:00
|
|
|
myConfig: webpackConfig,
|
2019-11-21 15:13:36 +01:00
|
|
|
web: webpackProdConf(),
|
2017-03-21 23:41:44 +01:00
|
|
|
},
|
2017-07-04 00:15:57 +02:00
|
|
|
"webpack-dev-server": {
|
2022-03-28 16:42:11 +02:00
|
|
|
options: webpackConfig,
|
2017-07-04 00:15:57 +02:00
|
|
|
start: {
|
2022-03-28 16:42:11 +02:00
|
|
|
mode: "development",
|
|
|
|
target: "web",
|
|
|
|
entry: Object.assign({
|
|
|
|
main: "./src/web/index.js"
|
|
|
|
}, moduleEntryPoints),
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
"./config/modules/OpModules.mjs": "./config/modules/Default.mjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
devServer: {
|
|
|
|
port: grunt.option("port") || 8080,
|
|
|
|
client: {
|
|
|
|
logging: "error",
|
|
|
|
overlay: true
|
2022-05-30 19:06:15 +02:00
|
|
|
},
|
|
|
|
hot: "only"
|
2022-03-28 16:42:11 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.DefinePlugin(BUILD_CONSTANTS),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
filename: "index.html",
|
|
|
|
template: "./src/web/html/index.html",
|
|
|
|
chunks: ["main"],
|
2024-04-05 19:09:07 +02:00
|
|
|
compileYear: compileYear,
|
2022-03-28 16:42:11 +02:00
|
|
|
compileTime: compileTime,
|
|
|
|
version: pkg.version,
|
|
|
|
})
|
|
|
|
]
|
2017-07-04 00:15:57 +02:00
|
|
|
}
|
|
|
|
},
|
2019-04-12 19:54:31 +02:00
|
|
|
zip: {
|
|
|
|
standalone: {
|
|
|
|
cwd: "build/prod/",
|
|
|
|
src: [
|
|
|
|
"build/prod/**/*",
|
|
|
|
"!build/prod/index.html",
|
|
|
|
"!build/prod/BundleAnalyzerReport.html",
|
|
|
|
],
|
|
|
|
dest: `build/prod/CyberChef_v${pkg.version}.zip`
|
|
|
|
}
|
|
|
|
},
|
2018-12-30 00:46:13 +01:00
|
|
|
connect: {
|
|
|
|
prod: {
|
|
|
|
options: {
|
2020-01-27 19:55:50 +01:00
|
|
|
port: grunt.option("port") || 8000,
|
2018-12-30 00:46:13 +01:00
|
|
|
base: "build/prod/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-11-28 11:42:58 +01:00
|
|
|
copy: {
|
2017-01-31 19:24:56 +01:00
|
|
|
ghPages: {
|
2016-12-03 01:37:38 +01:00
|
|
|
options: {
|
2017-09-13 17:21:31 +02:00
|
|
|
process: function (content, srcpath) {
|
|
|
|
if (srcpath.indexOf("index.html") >= 0) {
|
2019-04-12 19:54:31 +02:00
|
|
|
// Add Google Analytics code to index.html
|
2017-09-13 17:21:31 +02:00
|
|
|
content = content.replace("</body></html>",
|
|
|
|
grunt.file.read("src/web/static/ga.html") + "</body></html>");
|
2019-04-12 19:54:31 +02:00
|
|
|
|
|
|
|
// Add Structured Data for SEO
|
|
|
|
content = content.replace("</head>",
|
|
|
|
"<script type='application/ld+json'>" +
|
2019-04-14 22:55:52 +02:00
|
|
|
JSON.stringify(JSON.parse(grunt.file.read("src/web/static/structuredData.json"))) +
|
|
|
|
"</script></head>");
|
2017-09-13 17:21:31 +02:00
|
|
|
return grunt.template.process(content, srcpath);
|
|
|
|
} else {
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
noProcess: ["**", "!**/*.html"]
|
2016-12-03 01:37:38 +01:00
|
|
|
},
|
2017-09-13 17:21:31 +02:00
|
|
|
files: [
|
|
|
|
{
|
2020-12-11 17:24:39 +01:00
|
|
|
src: ["build/prod/index.html"],
|
2017-09-13 17:21:31 +02:00
|
|
|
dest: "build/prod/index.html"
|
2019-08-28 19:48:31 +02:00
|
|
|
}
|
2017-09-13 17:21:31 +02:00
|
|
|
]
|
2019-04-12 19:54:31 +02:00
|
|
|
},
|
|
|
|
standalone: {
|
|
|
|
options: {
|
|
|
|
process: function (content, srcpath) {
|
|
|
|
if (srcpath.indexOf("index.html") >= 0) {
|
|
|
|
// Replace download link with version number
|
|
|
|
content = content.replace(/<a [^>]+>Download CyberChef.+?<\/a>/,
|
|
|
|
`<span>Version ${pkg.version}</span>`);
|
|
|
|
|
|
|
|
return grunt.template.process(content, srcpath);
|
|
|
|
} else {
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
noProcess: ["**", "!**/*.html"]
|
|
|
|
},
|
|
|
|
files: [
|
|
|
|
{
|
2020-12-11 17:24:39 +01:00
|
|
|
src: ["build/prod/index.html"],
|
2019-04-12 19:54:31 +02:00
|
|
|
dest: `build/prod/CyberChef_v${pkg.version}.html`
|
|
|
|
}
|
|
|
|
]
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
chmod: {
|
|
|
|
build: {
|
|
|
|
options: {
|
|
|
|
mode: "755",
|
|
|
|
},
|
2017-03-27 17:08:36 +02:00
|
|
|
src: ["build/**/*", "build/"]
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
},
|
2018-05-06 13:24:01 +02:00
|
|
|
watch: {
|
|
|
|
config: {
|
|
|
|
files: ["src/core/operations/**/*", "!src/core/operations/index.mjs"],
|
2018-06-18 12:17:54 +02:00
|
|
|
tasks: ["exec:generateNodeIndex", "exec:generateConfig"]
|
2018-05-06 13:24:01 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
concurrent: {
|
|
|
|
dev: ["watch:config", "webpack-dev-server:start"],
|
|
|
|
options: {
|
|
|
|
logConcurrentOutput: true
|
|
|
|
}
|
|
|
|
},
|
2016-11-28 11:42:58 +01:00
|
|
|
exec: {
|
2023-03-21 16:39:31 +01:00
|
|
|
calcDownloadHash: {
|
|
|
|
command: function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case "darwin":
|
|
|
|
return chainCommands([
|
|
|
|
`shasum -a 256 build/prod/CyberChef_v${pkg.version}.zip | awk '{print $1;}' > build/prod/sha256digest.txt`,
|
|
|
|
`sed -i '' -e "s/DOWNLOAD_HASH_PLACEHOLDER/$(cat build/prod/sha256digest.txt)/" build/prod/index.html`
|
|
|
|
]);
|
|
|
|
default:
|
|
|
|
return chainCommands([
|
|
|
|
`sha256sum build/prod/CyberChef_v${pkg.version}.zip | awk '{print $1;}' > build/prod/sha256digest.txt`,
|
|
|
|
`sed -i -e "s/DOWNLOAD_HASH_PLACEHOLDER/$(cat build/prod/sha256digest.txt)/" build/prod/index.html`
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2017-01-31 19:24:56 +01:00
|
|
|
repoSize: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2016-12-14 17:39:17 +01:00
|
|
|
"git ls-files | wc -l | xargs printf '\n%b\ttracked files\n'",
|
|
|
|
"du -hs | egrep -o '^[^\t]*' | xargs printf '%b\trepository size\n'"
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2016-11-28 11:42:58 +01:00
|
|
|
stderr: false
|
|
|
|
},
|
2017-01-31 19:24:56 +01:00
|
|
|
cleanGit: {
|
2016-11-28 11:42:58 +01:00
|
|
|
command: "git gc --prune=now --aggressive"
|
|
|
|
},
|
2018-02-20 17:52:27 +01:00
|
|
|
sitemap: {
|
2022-01-31 12:39:17 +01:00
|
|
|
command: `node ${nodeFlags} src/web/static/sitemap.mjs > build/prod/sitemap.xml`,
|
2019-11-21 15:13:36 +01:00
|
|
|
sync: true
|
2018-03-27 00:14:23 +02:00
|
|
|
},
|
2018-04-11 20:08:42 +02:00
|
|
|
generateConfig: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2018-05-06 13:24:01 +02:00
|
|
|
"echo '\n--- Regenerating config files. ---'",
|
2019-02-11 19:44:41 +01:00
|
|
|
"echo [] > src/core/config/OperationConfig.json",
|
2022-01-31 12:39:17 +01:00
|
|
|
`node ${nodeFlags} src/core/config/scripts/generateOpsIndex.mjs`,
|
|
|
|
`node ${nodeFlags} src/core/config/scripts/generateConfig.mjs`,
|
2018-05-06 13:24:01 +02:00
|
|
|
"echo '--- Config scripts finished. ---\n'"
|
2019-11-21 15:13:36 +01:00
|
|
|
]),
|
|
|
|
sync: true
|
2018-04-11 20:08:42 +02:00
|
|
|
},
|
2018-06-06 10:13:26 +02:00
|
|
|
generateNodeIndex: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2018-06-06 10:13:26 +02:00
|
|
|
"echo '\n--- Regenerating node index ---'",
|
2022-01-31 12:39:17 +01:00
|
|
|
`node ${nodeFlags} src/node/config/scripts/generateNodeIndex.mjs`,
|
2018-06-19 09:53:29 +02:00
|
|
|
"echo '--- Node index generated. ---\n'"
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2019-11-21 15:13:36 +01:00
|
|
|
sync: true
|
2018-06-06 10:13:26 +02:00
|
|
|
},
|
2018-12-29 03:58:05 +01:00
|
|
|
browserTests: {
|
2019-04-12 19:54:31 +02:00
|
|
|
command: "./node_modules/.bin/nightwatch --env prod"
|
2019-01-04 10:27:32 +01:00
|
|
|
},
|
2019-08-02 12:10:15 +02:00
|
|
|
setupNodeConsumers: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2019-10-16 16:38:20 +02:00
|
|
|
"echo '\n--- Testing node consumers ---'",
|
2019-08-02 12:10:15 +02:00
|
|
|
"npm link",
|
|
|
|
`mkdir ${nodeConsumerTestPath}`,
|
|
|
|
`cp tests/node/consumers/* ${nodeConsumerTestPath}`,
|
|
|
|
`cd ${nodeConsumerTestPath}`,
|
|
|
|
"npm link cyberchef"
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2019-11-21 15:13:36 +01:00
|
|
|
sync: true
|
2019-08-02 12:10:15 +02:00
|
|
|
},
|
|
|
|
teardownNodeConsumers: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2019-08-02 12:10:15 +02:00
|
|
|
`rm -rf ${nodeConsumerTestPath}`,
|
|
|
|
"echo '\n--- Node consumer tests complete ---'"
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2019-08-02 12:10:15 +02:00
|
|
|
},
|
|
|
|
testCJSNodeConsumer: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2019-08-02 12:10:15 +02:00
|
|
|
`cd ${nodeConsumerTestPath}`,
|
2022-01-31 12:39:17 +01:00
|
|
|
`node ${nodeFlags} cjs-consumer.js`,
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2019-08-02 12:10:15 +02:00
|
|
|
stdout: false,
|
|
|
|
},
|
|
|
|
testESMNodeConsumer: {
|
2019-10-03 02:23:18 +02:00
|
|
|
command: chainCommands([
|
2019-08-02 12:10:15 +02:00
|
|
|
`cd ${nodeConsumerTestPath}`,
|
2022-01-31 12:39:17 +01:00
|
|
|
`node ${nodeFlags} esm-consumer.mjs`,
|
2019-10-03 02:23:18 +02:00
|
|
|
]),
|
2019-08-02 12:10:15 +02:00
|
|
|
stdout: false,
|
|
|
|
},
|
2021-02-03 20:07:39 +01:00
|
|
|
fixCryptoApiImports: {
|
2023-01-23 00:57:57 +01:00
|
|
|
command: function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case "darwin":
|
|
|
|
return `find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i '' -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'`;
|
|
|
|
default:
|
|
|
|
return `find ./node_modules/crypto-api/src/ \\( -type d -name .git -prune \\) -o -type f -print0 | xargs -0 sed -i -e '/\\.mjs/!s/\\(from "\\.[^"]*\\)";/\\1.mjs";/g'`;
|
|
|
|
}
|
|
|
|
},
|
2021-02-03 20:07:39 +01:00
|
|
|
stdout: false
|
2022-12-09 21:46:01 +01:00
|
|
|
},
|
|
|
|
fixSnackbarMarkup: {
|
2023-03-09 15:12:17 +01:00
|
|
|
command: function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case "darwin":
|
|
|
|
return `sed -i '' 's/<div id=snackbar-container\\/>/<div id=snackbar-container>/g' ./node_modules/snackbarjs/src/snackbar.js`;
|
|
|
|
default:
|
|
|
|
return `sed -i 's/<div id=snackbar-container\\/>/<div id=snackbar-container>/g' ./node_modules/snackbarjs/src/snackbar.js`;
|
|
|
|
}
|
|
|
|
},
|
2022-12-09 21:46:01 +01:00
|
|
|
stdout: false
|
2024-06-11 19:07:22 +02:00
|
|
|
},
|
|
|
|
fixJimpModule: {
|
|
|
|
command: function () {
|
|
|
|
switch (process.platform) {
|
|
|
|
case "darwin":
|
|
|
|
// Space added before comma to prevent multiple modifications
|
|
|
|
return `sed -i '' 's/"es\\/index.js",/"es\\/index.js" ,\\n "type": "module",/' ./node_modules/jimp/package.json`;
|
|
|
|
default:
|
|
|
|
return `sed -i 's/"es\\/index.js",/"es\\/index.js" ,\\n "type": "module",/' ./node_modules/jimp/package.json`;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
stdout: false
|
2021-02-03 20:07:39 +01:00
|
|
|
}
|
2017-02-28 18:08:36 +01:00
|
|
|
},
|
2016-11-28 11:42:58 +01:00
|
|
|
});
|
|
|
|
};
|