mirror of
https://github.com/gchq/CyberChef
synced 2025-01-07 10:08:46 +00:00
add node index to clean. generate node index before test
This commit is contained in:
parent
ec00413a4b
commit
fc1b8917a8
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ module.exports = function (grunt) {
|
||||||
|
|
||||||
grunt.registerTask("test",
|
grunt.registerTask("test",
|
||||||
"A task which runs all the tests in test/tests.",
|
"A task which runs all the tests in test/tests.",
|
||||||
["exec:generateConfig", "exec:tests"]);
|
["exec:generateNodeIndex", "exec:generateConfig", "exec:tests"]);
|
||||||
|
|
||||||
grunt.registerTask("docs",
|
grunt.registerTask("docs",
|
||||||
"Compiles documentation in the /docs directory.",
|
"Compiles documentation in the /docs directory.",
|
||||||
|
@ -135,7 +135,7 @@ module.exports = function (grunt) {
|
||||||
dev: ["build/dev/*"],
|
dev: ["build/dev/*"],
|
||||||
prod: ["build/prod/*"],
|
prod: ["build/prod/*"],
|
||||||
node: ["build/node/*"],
|
node: ["build/node/*"],
|
||||||
config: ["src/core/config/OperationConfig.json", "src/core/config/modules/*", "src/code/operations/index.mjs"],
|
config: ["src/core/config/OperationConfig.json", "src/core/config/modules/*", "src/code/operations/index.mjs", "src/node/index.mjs"],
|
||||||
docs: ["docs/*", "!docs/*.conf.json", "!docs/*.ico", "!docs/*.png"],
|
docs: ["docs/*", "!docs/*.conf.json", "!docs/*.ico", "!docs/*.png"],
|
||||||
inlineScripts: ["build/prod/scripts.js"],
|
inlineScripts: ["build/prod/scripts.js"],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue