diff --git a/.gitignore b/.gitignore index 388bdfcf4..330dd95b8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,3 @@ html-dist lib .history tests/tmp -.turbo diff --git a/biome.json b/biome.json index 62855e87e..b5bc9024d 100644 --- a/biome.json +++ b/biome.json @@ -10,9 +10,9 @@ "tsconfig.json", "**/.DS_Store", "**/dist/**", - "**/.turbo/**", "**/.astro/**", - "package.json" + "package.json", + "**/.changeset/**" ] }, "organizeImports": { diff --git a/bun.lockb b/bun.lockb index 267668cf7..5a226f4ba 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index f85bce60d..bc2ee8076 100644 --- a/package.json +++ b/package.json @@ -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 '*' 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" diff --git a/turbo.json b/turbo.json deleted file mode 100644 index eb6517f34..000000000 --- a/turbo.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "$schema": "https://turborepo.org/schema.json", - "tasks": { - "dev": { - "cache": false, - "persistent": true - }, - "build": { - "dependsOn": ["^build"], - "outputs": ["dist/**", ".next/**", "!.next/cache/**"] - }, - "check-exports": {}, - "format:check": {}, - "lint": {}, - "test": { - "dependsOn": ["^lint"], - "outputs": [] - }, - "test:watch": { - "cache": false - }, - "test:ci": { - "outputs": ["coverage/**"], - "dependsOn": ["lint"] - }, - "typecheck": {} - } -}