Skip to content

Commit

Permalink
chore(turbo): remove turbo and updating scripts to bun
Browse files Browse the repository at this point in the history
  • Loading branch information
srod committed Dec 10, 2024
1 parent b208be9 commit e423b2d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 42 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ html-dist
lib
.history
tests/tmp
.turbo
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"tsconfig.json",
"**/.DS_Store",
"**/dist/**",
"**/.turbo/**",
"**/.astro/**",
"package.json"
"package.json",
"**/.changeset/**"
]
},
"organizeImports": {
Expand Down
Binary file modified bun.lockb
Binary file not shown.
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@
},
"packageManager": "bun@1.1.34",
"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/run' 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",
Expand Down Expand Up @@ -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"
Expand Down
28 changes: 0 additions & 28 deletions turbo.json

This file was deleted.

0 comments on commit e423b2d

Please sign in to comment.