mirror of
https://github.com/vercel/turborepo.git
synced 2025-12-23 09:19:46 +00:00
### Description Third try is the charm. See https://github.com/vercel/turborepo/pull/9905 and https://github.com/vercel/turborepo/pull/9909 for details. Additional changes: - Make sure `turbo` binaries are marked as executable. Since they get downloaded via `@actions/download-artifact` which strips permissions: [docs](https://github.com/actions/download-artifact?tab=readme-ov-file#permission-loss) - Correctly set `os: ["win32"]` for the windows package for `turbo-windows-${arch}` ### Testing Instructions Changes from previous PRs: added an e2e test to make sure that the tarball is installable and the included executable is just that.
14 lines
379 B
JSON
14 lines
379 B
JSON
{
|
|
"name": "cli",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"clean": "cargo clean --package turbo",
|
|
"build": "cargo build --package turbo",
|
|
"build:release": "cargo build --package turbo --profile release-turborepo",
|
|
"release-native": "turboreleaser --version-path ../version.txt"
|
|
},
|
|
"dependencies": {
|
|
"@turbo/releaser": "workspace:*"
|
|
}
|
|
}
|