Skip to content

Commit db643cf

Browse files
authored
[codex] Fix packed export validation in CI (#1107)
* fix(packaging): validate packed exports in ci * fix(packaging): scope export verification to entrypoints * fix(cli): add packed export checks to doctor * fix(cli): address verifier review feedback
1 parent 86bca5b commit db643cf

File tree

12 files changed

+778
-533
lines changed

12 files changed

+778
-533
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ jobs:
153153
154154
echo "🧹 Running release safety checks..."
155155
pnpm run format-check
156+
node scripts/validate-publish-packages.js
156157
157158
echo "🔍 Validating workflow files before push..."
158159
for file in .github/workflows/*.yml .github/workflows/*.yaml; do

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"@commitlint/config-conventional": "^20.3.1",
4242
"@playwright/test": "^1.57.0",
4343
"@vitest/coverage-v8": "4.0.17",
44+
"acorn": "^8.15.0",
4445
"chokidar": "^5.0.0",
4546
"concurrently": "9.2.1",
4647
"dependency-cruiser": "^17.3.6",

packages/cli/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"files": [
1313
"bin",
1414
"dist",
15+
"scripts",
1516
"README.md",
1617
"CLAUDE.md"
1718
],
@@ -41,6 +42,7 @@
4142
"@happyvertical/smrt-types": "workspace:*",
4243
"@happyvertical/sql": "catalog:",
4344
"@happyvertical/utils": "catalog:",
45+
"acorn": "^8.15.0",
4446
"fast-glob": "3.3.3",
4547
"tar": "^7.5.2"
4648
},

0 commit comments

Comments
 (0)