[181] 'fix' dev to get started

This commit is contained in:
Robin Scholtes 2023-04-16 21:47:43 +12:00
parent 1bc88728f0
commit 2aa8dbb69f
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ src/node/index.mjs
**/*.DS_Store
tests/browser/output/*
.node-version
.idea

View file

@ -4,7 +4,9 @@
* @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 Operation from "./Operation.mjs";
import DishError from "./errors/DishError.mjs";

View file

@ -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 Recipe from "../Recipe.mjs";
import Dish from "../Dish.mjs";