Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean"
"clean": "tsc --build --clean && rm -rf dist"
},
"dependencies": {
"@swc/core": "1.11.24",
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean"
"clean": "tsc --build --clean && rm -rf dist"
},
"dependencies": {
"@swc/core": "1.11.24",
Expand Down
1 change: 1 addition & 0 deletions packages/swc-plugin-workflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
],
"scripts": {
"build": "./build.sh",
"clean": "cargo clean",
"test": "cargo test -p swc_workflow",
"prepublishOnly": "pnpm build"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/world-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean",
"clean": "tsc --build --clean && rm -rf dist",
"test": "vitest run src",
"typecheck": "tsc --noEmit"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/world-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean",
"clean": "tsc --build --clean && rm -rf dist",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"db:push": "pnpm exec drizzle-kit --version && drizzle-kit push"
Expand Down
1 change: 1 addition & 0 deletions packages/world-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"scripts": {
"build": "wf build && tsc",
"clean": "tsc --build --clean && rm -rf dist .well-known* .workflow-data",
"start": "node --watch src/server.mts",
"test": "vitest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/world-vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean",
"clean": "tsc --build --clean && rm -rf dist",
"test": "echo 'No tests yet'",
"typecheck": "tsc --noEmit"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
"dev": "tsc --watch",
"clean": "tsc --build --clean && rm -rf dist"
},
"peerDependencies": {
"zod": "catalog:"
Expand Down
2 changes: 1 addition & 1 deletion workbench/nextjs-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"clean": "rm -r .next .swc app/.well-known/workflow",
"clean": "rm -rf .next .swc app/.well-known/workflow",
"start": "next start",
"lint": "next lint"
},
Expand Down