Skip to content

Commit

Permalink
chore: update turbo to 1.12.4 (#5727)
Browse files Browse the repository at this point in the history
The newer version finally has improved output (stops mangling stuff, like weird spacing and missing colors)! Also looks like they have been adding fixes for the daemon, which I've personally been having issue with.

*By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*.
  • Loading branch information
MarkMcCulloh authored Feb 19, 2024
1 parent 673ca77 commit f0ceed4
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 34 deletions.
3 changes: 1 addition & 2 deletions apps/jsii-docgen/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"outputs": ["lib/**"]
},
"test": {
"inputs": ["src/**", "test/**"],
"outputs": ["test/**"]
"outputs": ["test/**/*.snap"]
}
}
}
3 changes: 1 addition & 2 deletions examples/ts-fixture/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"extends": ["//"],
"pipeline": {
"compile": {
"outputs": ["src/target/**"],
"inputs": []
"outputs": ["src/target/**"]
},
"test": {}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"bump-pack": "workspace:^",
"generate-workspace": "workspace:^",
"@winglang/compatibility-spy": "workspace:^",
"turbo": "^1.11.3"
"turbo": "^1.12.4"
},
"scripts": {
"build": "turbo compile post-compile lint eslint test package",
Expand Down
50 changes: 25 additions & 25 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions tools/hangar/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@
"outputs": ["src/test_corpus/**"]
},
"test": {
"dependsOn": ["^package", "test:generate"],
"inputs": ["src/**"]
"dependsOn": ["^package", "test:generate"]
},
"bench": {
"dependsOn": ["^package", "examples-valid#topo"],
"inputs": ["src/**"]
"dependsOn": ["^package", "examples-valid#topo"]
}
}
}
17 changes: 17 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,23 @@
],
"outputs": ["**/__snapshots__/**", "**/*.snap"]
},
"bench": {
"dependsOn": ["compile"],
"inputs": [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"test/**"
]
},
"test:playwright": {
"dependsOn": ["compile"],
"inputs": [
Expand Down

0 comments on commit f0ceed4

Please sign in to comment.