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
4 changes: 1 addition & 3 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,5 @@
"@executor/plugin-openapi": "0.0.1-beta.5",
"@executor/react": "1.4.2"
},
"changesets": [
"tiny-keys-check"
]
"changesets": ["tiny-keys-check"]
}
3 changes: 2 additions & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"build:publish": "bun run src/build.ts publish",
"release:publish:dry-run": "bun run src/release.ts --dry-run",
"release:publish": "bun run src/release.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect/cli": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions apps/cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
"preview": "vite preview",
"deploy": "vite build && wrangler deploy",
"cf-typegen": "wrangler types",
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.31.1",
Expand Down
5 changes: 3 additions & 2 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
"main": "dist/main.js",
"scripts": {
"dev": "node scripts/dev.js",
"build": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"bundle-cli": "node scripts/bundle-cli.js",
"dist": "npm run build && npm run bundle-cli && electron-builder",
"dist:mac": "npm run build && npm run bundle-cli && electron-builder --mac",
"dist:win": "npm run build && npm run bundle-cli && electron-builder --win",
"dist:linux": "npm run build && npm run bundle-cli && electron-builder --linux",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions apps/desktop/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"declaration": false,
"sourceMap": true
}
}
4 changes: 2 additions & 2 deletions apps/desktop/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "node",
"module": "NodeNext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
Expand Down
3 changes: 2 additions & 1 deletion apps/local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"dev": "portless run --name executor-local bunx --bun vite dev",
"build": "bunx --bun vite build",
"start": "bun run src/serve.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect-atom/atom-react": "^0.5.0",
Expand Down
17 changes: 17 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion examples/promise-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"type": "module",
"scripts": {
"start": "bun run src/main.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@executor/plugin-graphql": "workspace:*",
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
"test:release:bootstrap": "vitest run tests/release-bootstrap-smoke.test.ts",
"build:packages": "bun run --filter='@executor/sdk' build && bun run --filter='@executor/plugin-*' build",
"typecheck": "turbo run typecheck",
"typecheck:slow": "turbo run typecheck:slow",
"ci": "bun run lint && bun run typecheck && bun run test",
"lint": "oxlint -c .oxlintrc.jsonc . --deny-warnings",
"lint:fix": "oxlint -c .oxlintrc.jsonc --fix .",
"format": "oxfmt .",
Expand All @@ -59,6 +61,7 @@
"@effect/language-service": "^0.84.2",
"@effect/platform": "catalog:",
"@effect/vitest": "catalog:",
"@typescript/native-preview": "^7.0.0-dev.20260410.1",
"effect": "catalog:",
"knip": "^6.3.0",
"oxfmt": "^0.44.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"./server": "./src/server.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect/platform": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run"
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect/platform": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"test": "vitest run"
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"effect": "catalog:"
Expand Down
5 changes: 3 additions & 2 deletions packages/core/execution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"test": "vitest run"
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/codemode-core": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "tsc --noEmit",
"test": "vitest run"
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"effect": "catalog:"
Expand Down
3 changes: 2 additions & 1 deletion packages/core/storage-file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit"
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect/sql": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/storage-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"typecheck": "tsgo --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
"db:migrate": "drizzle-kit migrate",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@effect/sql": "catalog:",
Expand Down
1 change: 1 addition & 0 deletions packages/core/storage-postgres/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"outDir": "dist",
"rootDir": "src",
"declaration": true,
Expand Down
5 changes: 3 additions & 2 deletions packages/hosts/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/ir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"effect": "catalog:"
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/runtime-deno-subprocess/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/codemode-core": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/runtime-dynamic-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/codemode-core": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/runtime-quickjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/codemode-core": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel/runtime-secure-exec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/codemode-core": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/file-secrets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/sdk": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/google-discovery/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@effect/platform": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@effect/platform": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/keychain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@executor/sdk": "workspace:*",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@effect/platform": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugins/onepassword/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@1password/op-js": "^0.1.13",
Expand Down
Loading