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
3 changes: 2 additions & 1 deletion integrations/browser-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"build": "tsup",
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -rf dist"
"clean": "rm -rf dist",
"yalc:publish": "yalc publish"
},
"dependencies": {
"als-browser": "^1.0.1",
Expand Down
3 changes: 2 additions & 1 deletion integrations/langchain-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run"
"test": "vitest run",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion integrations/openai-agents-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run"
"test": "vitest run",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion integrations/otel-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"clean": "rm -r dist/*",
"test": "pnpm test:v1 && pnpm test:v2",
"test:v1": "cd otel-v1 && pnpm test",
"test:v2": "cd otel-v2 && pnpm test"
"test:v2": "cd otel-v2 && pnpm test",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion integrations/templates-nunjucks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run --exclude 'smoke/scenarios/**'"
"test": "vitest run --exclude 'smoke/scenarios/**'",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion integrations/temporal-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run"
"test": "vitest run",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion integrations/vercel-ai-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"check:typings": "tsc --noEmit",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run"
"test": "vitest run",
"yalc:publish": "yalc publish"
},
"author": "Braintrust Data Inc.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
"playground": "tsx playground.ts",
"playground:auto": "mkdir -p .context && pnpm exec esbuild playground.ts --platform=node --format=esm --outfile=.context/playground.auto.mjs && node --import ./dist/auto-instrumentations/hook.mjs ./.context/playground.auto.mjs",
"playground:cli:push": "node dist/cli.js push playground.ts",
"playground:cli:eval": "node dist/cli.js eval playground.ts"
"playground:cli:eval": "node dist/cli.js eval playground.ts",
"yalc:publish": "yalc publish"
},
"author": "",
"license": "MIT",
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"formatting": "prettier --check .",
"lint": "turbo run lint",
"fix:formatting": "prettier --write .",
"fix:lint": "turbo run fix:lint"
"fix:lint": "turbo run fix:lint",
"yalc:publish": "turbo run yalc:publish"
},
"engines": {
"pnpm": ">=10.27.0",
Expand All @@ -44,7 +45,8 @@
"knip": "^5.85.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"turbo": "^2.8.21"
"turbo": "^2.8.21",
"yalc": "1.0.0-pre.53"
},
"overrides": {
"zod": "3.25.34",
Expand Down
92 changes: 86 additions & 6 deletions pnpm-lock.yaml

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

5 changes: 5 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"env": []
},
"yalc:publish": {
"cache": false,
"dependsOn": ["build"],
"outputs": []
},
"check:typings": {
"dependsOn": ["^build"],
"outputs": []
Expand Down
Loading