mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
Added 'Sleep' operation.
This commit is contained in:
parent
231322eddf
commit
f528930ad2
5 changed files with 38 additions and 2 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -186,7 +186,10 @@ module.exports = function (grunt) {
|
|||
options: webpackConfig,
|
||||
metaConf: {
|
||||
target: "node",
|
||||
entry: "./src/core/config/OperationConfig.js",
|
||||
entry: [
|
||||
"babel-polyfill",
|
||||
"./src/core/config/OperationConfig.js"
|
||||
],
|
||||
output: {
|
||||
filename: "MetaConfig.js",
|
||||
path: __dirname + "/src/core/config/",
|
||||
|
@ -198,7 +201,10 @@ module.exports = function (grunt) {
|
|||
},
|
||||
metaConfDev: {
|
||||
target: "node",
|
||||
entry: "./src/core/config/OperationConfig.js",
|
||||
entry: [
|
||||
"babel-polyfill",
|
||||
"./src/core/config/OperationConfig.js"
|
||||
],
|
||||
output: {
|
||||
filename: "MetaConfig.js",
|
||||
path: __dirname + "/src/core/config/",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue