mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 23:36:16 -04:00
WIP HAD to move NodeDish out - NONE of it is async!
This commit is contained in:
parent
aafde8986d
commit
04b7f2fa8c
16 changed files with 442 additions and 411 deletions
|
@ -271,7 +271,7 @@ module.exports = function (grunt) {
|
|||
]
|
||||
},
|
||||
node: {
|
||||
mode: process.env.NODE_ENV,
|
||||
mode: process.env.NODE_ENV === "prodction" ? "production" : "development",
|
||||
target: "node",
|
||||
entry: "./src/node/index.mjs",
|
||||
externals: [NodeExternals({
|
||||
|
@ -302,7 +302,7 @@ module.exports = function (grunt) {
|
|||
}
|
||||
},
|
||||
nodeRepl: {
|
||||
mode: process.env.NODE_ENV,
|
||||
mode: process.env.NODE_ENV === "prodction" ? "production" : "development",
|
||||
target: "node",
|
||||
entry: "./src/node/repl-index.mjs",
|
||||
externals: [NodeExternals({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue