Skip to content

Commit

Permalink
ci: fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty committed Dec 9, 2024
1 parent 7b9c086 commit 1a7472e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@
"dependsOn": ["compile:js", "compile:typedefs"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build", "test:typecheck", "test:unit:browser", "test:unit:node"],
"outputs": ["dist/**"]
},
"publish-packages": {
"cache": false,
"dependsOn": [
"build",
"test:typecheck",
"test:unit:browser",
"test:unit:node",
"test:treeshakability:browser",
"test:treeshakability:native",
"test:treeshakability:node"
],
"dependsOn": ["build", "test"],
"passThroughEnv": ["GH_TOKEN", "NPM_TOKEN", "PUBLISH_TAG"]
},
"compile:js": {
Expand All @@ -35,6 +31,11 @@
"inputs": ["$TURBO_DEFAULT$", "*"],
"outputs": ["*"]
},
"test:typecheck": {
"dependsOn": ["^compile:typedefs"],
"inputs": ["$TURBO_DEFAULT$", "tsconfig.*", "src/**"],
"outputs": []
},
"test:unit:browser": {
"dependsOn": ["^compile:js"],
"inputs": ["$TURBO_DEFAULT$", "src/**"],
Expand Down

0 comments on commit 1a7472e

Please sign in to comment.