-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ff71e1
commit 2519f3a
Showing
3 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,7 +285,8 @@ | |
}, | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]" | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/dist/src/DeploymentsManager.js b/dist/src/DeploymentsManager.js | ||
index 9ff5b84084cc6a6ce05e6d41efd2e95e868a0082..e2b10562bdd2b3cdf64da4a11d21ed0be2a3cd4d 100644 | ||
--- a/dist/src/DeploymentsManager.js | ||
+++ b/dist/src/DeploymentsManager.js | ||
@@ -733,7 +733,7 @@ class DeploymentsManager { | ||
// console.log("fetching " + scriptFilePath); | ||
try { | ||
delete require.cache[scriptFilePath]; // ensure we reload it every time, so changes are taken in consideration | ||
- deployFunc = require(scriptFilePath); | ||
+ deployFunc = await import(scriptFilePath); | ||
if (deployFunc.default) { | ||
deployFunc = deployFunc.default; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.