Skip to content

Commit

Permalink
chore: fix references to dist/ folder in turbo.json (#7070)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr authored Sep 3, 2024
1 parent 53cf72f commit 030f393
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/@winglang/compatibility-spy/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"package": {
"dependsOn": ["compile"],
"outputs": ["../../dist/winglang-compatibility-spy-*.tgz"]
"outputs": ["../../../dist/winglang-compatibility-spy-*.tgz"]
}
}
}
4 changes: 2 additions & 2 deletions packages/@winglang/compiler/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"compile:copy-wingc-wasm": {
"dependsOn": ["^compile"],
"inputs": ["../wingc/wingc.wasm"],
"outputs": ["wingc.wasm", "../../dist/wingc.wasm"]
"outputs": ["wingc.wasm", "../../../dist/wingc.wasm"]
},
"compile": {
"dependsOn": ["compile:copy-wingc-wasm"],
"outputs": ["dist/**"]
},
"package": {
"outputs": ["../../dist/winglang-compiler-*.tgz"]
"outputs": ["../../../dist/winglang-compiler-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion packages/@winglang/platform-awscdk/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"package": {
"dependsOn": ["compile"],
"outputs": ["../../dist/winglang-platform-awscdk-*.tgz"]
"outputs": ["../../../dist/winglang-platform-awscdk-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion packages/@winglang/sdk/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dependsOn": ["compile"]
},
"package": {
"outputs": ["../../dist/winglang-sdk-*.tgz"]
"outputs": ["../../../dist/winglang-sdk-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion packages/@winglang/wingtunnels/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"package": {
"dependsOn": ["compile"],
"outputs": ["../../dist/winglang-wingtunnels-*.tgz"]
"outputs": ["../../../dist/winglang-wingtunnels-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion wing-console/console/app/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"env": ["SEGMENT_WRITE_KEY", "VITE_WING_CLOUD_SIGN_IN_URL"]
},
"package": {
"outputs": ["../../../../dist/wingconsole-app-*.tgz"]
"outputs": ["../../../dist/wingconsole-app-*.tgz"]
},
"preview:fly": {
"dependsOn": ["compile"],
Expand Down
2 changes: 1 addition & 1 deletion wing-console/console/design-system/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outputs": ["dist/**"]
},
"package": {
"outputs": ["../../../../dist/wingconsole-design-system-*.tgz"]
"outputs": ["../../../dist/wingconsole-design-system-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion wing-console/console/server/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outputs": ["dist/**"]
},
"package": {
"outputs": ["../../../../dist/wingconsole-server-*.tgz"]
"outputs": ["../../../dist/wingconsole-server-*.tgz"]
}
}
}
2 changes: 1 addition & 1 deletion wing-console/console/ui/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outputs": ["dist/**"]
},
"package": {
"outputs": ["../../../../dist/wingconsole-ui-*.tgz"]
"outputs": ["../../../dist/wingconsole-ui-*.tgz"]
}
}
}

0 comments on commit 030f393

Please sign in to comment.