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
11 changes: 11 additions & 0 deletions .changeset/fix-publish-exports.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@perstack/core": patch
"@perstack/runtime": patch
"@perstack/react": patch
"@perstack/base": patch
"@perstack/create-expert-skill": patch
"create-expert": patch
"perstack": patch
---

Fix: republish with correct exports (publishConfig.exports applied via pnpm publish)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build": "turbo run build",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run clean && bun run build && sed -i.bak 's/\"bun@[^\"]*\"/\"pnpm@10.10.0\"/' package.json && changeset publish; rc=$?; mv package.json.bak package.json; exit $rc",
"release": "bun run clean && bun run build && node -e \"var f=require('fs'),p=JSON.parse(f.readFileSync('package.json'));p.packageManager='pnpm@10.10.0';f.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\" && changeset publish; rc=$?; git checkout package.json; exit $rc",
"test": "turbo run test",
"test:watch": "bun test --watch packages/ apps/",
"test:e2e": "bun test --timeout 300000 e2e/",
Expand Down