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 apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dev:server-bundle": "vp run --filter @threadlines/server dev:bundle",
"smoke-test": "node scripts/smoke-test.mjs",
"start": "node scripts/start-electron.mjs",
"test": "vp test run --passWithNoTests",
"test": "vp exec vp test run --passWithNoTests",
"typecheck": "tsc --noEmit",
"vendor:playwright": "node ../../scripts/extract-playwright-injected.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/marketing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vp test run",
"test": "vp exec vp test run",
"typecheck": "astro check"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/relay-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "tsc --noEmit",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"test": "vp test run",
"test": "vp exec vp test run",
"typecheck": "tsc --noEmit",
"types": "wrangler types src/worker-configuration.d.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"build:bundle": "vp pack",
"start": "node dist/bin.mjs",
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "vp build",
"preview": "vp preview",
"typecheck": "tsc --noEmit",
"test": "vp test run --passWithNoTests --project unit",
"test": "vp exec vp test run --passWithNoTests --project unit",
"test:browser:install": "playwright install --with-deps chromium"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default defineConfig({
// and a task that reads-and-writes an input is never cacheable —
// exclude those artifacts from the input fingerprint.
"test:browser": {
command: "vp test run --config vitest.browser.config.ts",
command: "vp exec vp test run --config vitest.browser.config.ts",
input: [{ auto: true }, "!src/**/preview-output/**", "!src/**/__screenshots__/**"],
},
},
Expand Down
2 changes: 1 addition & 1 deletion oxlint-plugin-threadlines/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run --testTimeout=30000"
"test": "vp exec vp test run --testTimeout=30000"
},
"dependencies": {
"@effect/platform-node": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@threadlines/contracts": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"effect": "catalog:"
Expand Down
2 changes: 1 addition & 1 deletion packages/effect-acp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run --testTimeout=30000",
"test": "vp exec vp test run --testTimeout=30000",
"generate": "node scripts/generate.ts"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/effect-codex-app-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run --testTimeout=30000",
"test": "vp exec vp test run --testTimeout=30000",
"generate": "node scripts/generate.ts",
"probe": "node test/examples/codex-app-server-probe.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@threadlines/contracts": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/ssh/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@threadlines/contracts": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/tailscale/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@effect/platform-node": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vp test run"
"test": "vp exec vp test run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "catalog:",
Expand Down
Loading