Skip to content

Commit

Permalink
chore(ci): move turbo build command into package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-olszewski committed Apr 17, 2024
1 parent e6e683f commit 7f29b14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions cli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ TURBO_TAG = $(shell cat ../version.txt | sed -n '2 p')

CLI_DIR = $(shell pwd)

# We do not set go-turbo as a dependency because the Rust build.rs
# script will call it for us and copy over the binary
turbo:
cargo build -p turbo

.PHONY: install
install:
pnpm install
Expand Down
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"scripts": {
"clean": "make clean",
"build": "make",
"build": "cargo build -p turbo",
"build:release": "cargo build -p turbo --profile release-turborepo"
}
}

0 comments on commit 7f29b14

Please sign in to comment.