-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:apptension/saas-boilerplate into …
…feature/rewrite-graphql-subscriptions
- Loading branch information
Showing
17 changed files
with
133 additions
and
30 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 |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
"@graphql-codegen/cli": "^5.0.0", | ||
"@graphql-typed-document-node/core": "^3.2.0", | ||
"@nx/devkit": "17.1.3", | ||
"@nx/eslint": "17.1.3", | ||
"@nx/eslint-plugin": "17.1.3", | ||
"@nx/jest": "17.1.3", | ||
"@nx/js": "17.1.3", | ||
|
@@ -83,8 +84,7 @@ | |
"vite": "^4.5.0", | ||
"vite-plugin-eslint": "^1.8.1", | ||
"vite-plugin-svgr": "^3.3.0", | ||
"vite-tsconfig-paths": "^4.2.1", | ||
"@nx/eslint": "17.1.3" | ||
"vite-tsconfig-paths": "^4.2.1" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/client-cloudformation": "^3.462.0", | ||
|
@@ -113,5 +113,10 @@ | |
"react-router-dom": "6.16.0", | ||
"regenerator-runtime": "^0.14.0", | ||
"styled-components": "6.0.8" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[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
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
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
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
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
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
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
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
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
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
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
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
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
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
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/src/tasks-runner/run-command.js b/src/tasks-runner/run-command.js | ||
index cd830d3c34639a5d8a52c12b3975e8c309ba8f9b..8300356271db5e2a815d3b51443a5f6682858181 100644 | ||
--- a/src/tasks-runner/run-command.js | ||
+++ b/src/tasks-runner/run-command.js | ||
@@ -114,7 +114,7 @@ function setEnvVarsBasedOnArgs(nxArgs, loadDotEnvFiles) { | ||
if (nxArgs.outputStyle == 'stream-without-prefixes') { | ||
process.env.NX_STREAM_OUTPUT = 'true'; | ||
} | ||
- if (loadDotEnvFiles) { | ||
+ if (loadDotEnvFiles && !process.env.NX_LOAD_DOT_ENV_FILES) { | ||
process.env.NX_LOAD_DOT_ENV_FILES = 'true'; | ||
} | ||
} |
Oops, something went wrong.