-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(turbo): remove turbo and updating scripts to bun
- Loading branch information
Showing
5 changed files
with
12 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,3 @@ html-dist | |
lib | ||
.history | ||
tests/tmp | ||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,26 +19,26 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "turbo --filter \"./packages/*\" build", | ||
"build:docs": "turbo --filter \"./docs\" build", | ||
"check-exports": "turbo check-exports", | ||
"build": "bun run --filter './packages/utils' build && bun run --filter './packages/**' build", | ||
"build:docs": "bun run --filter './docs' build", | ||
"check-exports": "bun run --filter '*' check-exports", | ||
"ci": "bun run build && bun run check-exports && bun run lint && bun run typecheck && bun run test:ci", | ||
"clean": "bun clean:build", | ||
"clean:build": "bunx rimraf packages/*/dist docs/dist docs/.astro", | ||
"clean:test": "bunx rimraf tests/tmp/*.{js,js.map,css,html,json}", | ||
"clean:git": "git restore --source=HEAD --staged --worktree -- tests/fixtures", | ||
"dev": "turbo dev --concurrency 30", | ||
"lint": "turbo lint", | ||
"dev": "bun run --filter '*' dev", | ||
"lint": "bun run --filter '*' lint", | ||
"local-release": "bun run changeset:version && bun run changeset:release", | ||
"test": "turbo test && bun run clean:git", | ||
"test:watch": "turbo run test:watch", | ||
"test:ci": "turbo run test:ci", | ||
"test": "bun run --filter '*' test && bun run clean:git", | ||
"test:watch": "bun run --filter '*' test:watch", | ||
"test:ci": "bun run --filter '*' test:ci", | ||
"changeset": "changeset", | ||
"changeset:version": "changeset version && bun install --no-frozen-lockfile", | ||
"changeset:release": "bun run build && changeset publish", | ||
"format:check": "turbo run format:check", | ||
"format:check": "bun run --filter '*' format:check", | ||
"format": "biome check --write .", | ||
"typecheck": "turbo run typecheck" | ||
"typecheck": "bun run --filter '*' typecheck" | ||
}, | ||
"dependencies": { | ||
"@arethetypeswrong/cli": "^0.17.0", | ||
|
@@ -73,7 +73,6 @@ | |
"node-notifier": "10.0.1", | ||
"rimraf": "6.0.1", | ||
"tsup": "8.3.5", | ||
"turbo": "2.3.0", | ||
"typescript": "5.6.3", | ||
"vite-tsconfig-paths": "5.1.3", | ||
"vitest": "1.6.0" | ||
|
This file was deleted.
Oops, something went wrong.