Skip to content

Commit

Permalink
Merge pull request #1392 from notaphplover/fix/update-turbo-with-miss…
Browse files Browse the repository at this point in the history
…ing-env-deps

Update turbo config with env dependencies
  • Loading branch information
notaphplover committed Jun 30, 2024
2 parents 6384b3f + 8b2e6b0 commit 489141d
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@
"serve": {
"cache": false,
"dependsOn": ["build"],
"inputs": [
"$TURBO_DEFAULT$",
"ONE_JS_GAME_SERVICE_DOT_ENV_PATH",
"ONE_JS_GATEWAY_SERVICE_DOT_ENV_PATH",
"ONE_JS_TEST_E2E_DOT_ENV_PATH",
"ONE_JS_USER_SERVICE_DOT_ENV_PATH"
],
"persistent": true
},
"serve:docker": {
Expand All @@ -71,14 +78,28 @@
},
"start:e2e": {
"cache": false,
"dependsOn": ["build"]
"dependsOn": ["build"],
"inputs": [
"$TURBO_DEFAULT$",
"ONE_JS_GAME_SERVICE_DOT_ENV_PATH",
"ONE_JS_GATEWAY_SERVICE_DOT_ENV_PATH",
"ONE_JS_TEST_E2E_DOT_ENV_PATH",
"ONE_JS_USER_SERVICE_DOT_ENV_PATH"
]
},
"test": {
"inputs": ["src/**/*.ts"],
"outputs": []
},
"test:e2e": {
"cache": false
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"ONE_JS_GAME_SERVICE_DOT_ENV_PATH",
"ONE_JS_GATEWAY_SERVICE_DOT_ENV_PATH",
"ONE_JS_TEST_E2E_DOT_ENV_PATH",
"ONE_JS_USER_SERVICE_DOT_ENV_PATH"
]
},
"test:e2e:js": {
"cache": false,
Expand Down

0 comments on commit 489141d

Please sign in to comment.