mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -04:00
[181] 'fix' dev to get started
This commit is contained in:
parent
1bc88728f0
commit
2aa8dbb69f
3 changed files with 7 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,3 +12,4 @@ src/node/index.mjs
|
||||||
**/*.DS_Store
|
**/*.DS_Store
|
||||||
tests/browser/output/*
|
tests/browser/output/*
|
||||||
.node-version
|
.node-version
|
||||||
|
.idea
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
* @license Apache-2.0
|
* @license Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import OperationConfig from "./config/OperationConfig.json" assert {type: "json"};
|
// @TODO: NTS return this to original? ( it breaks dev though )
|
||||||
|
// import OperationConfig from "./config/OperationConfig.json" assert {type: "json"};
|
||||||
|
import OperationConfig from "./config/OperationConfig.json";
|
||||||
import OperationError from "./errors/OperationError.mjs";
|
import OperationError from "./errors/OperationError.mjs";
|
||||||
import Operation from "./Operation.mjs";
|
import Operation from "./Operation.mjs";
|
||||||
import DishError from "./errors/DishError.mjs";
|
import DishError from "./errors/DishError.mjs";
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
import OperationConfig from "../config/OperationConfig.json" assert {type: "json"};
|
// @TODO: NTS return this to original? ( it breaks dev though )
|
||||||
|
// import OperationConfig from "../config/OperationConfig.json" assert {type: "json"};
|
||||||
|
import OperationConfig from "../config/OperationConfig.json";
|
||||||
import Utils, { isWorkerEnvironment } from "../Utils.mjs";
|
import Utils, { isWorkerEnvironment } from "../Utils.mjs";
|
||||||
import Recipe from "../Recipe.mjs";
|
import Recipe from "../Recipe.mjs";
|
||||||
import Dish from "../Dish.mjs";
|
import Dish from "../Dish.mjs";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue