Skip to content

Commit

Permalink
[181] 'fix' dev to get started
Browse files Browse the repository at this point in the history
  • Loading branch information
valdelaseras committed Apr 16, 2023
1 parent 1bc8872 commit 2aa8dbb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ src/node/index.mjs
**/*.DS_Store
tests/browser/output/*
.node-version
.idea
4 changes: 3 additions & 1 deletion src/core/Recipe.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 3 additions & 1 deletion src/core/lib/Magic.mjs
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 2aa8dbb

Please sign in to comment.