fix: exclude release bundles from npm publish

This commit is contained in:
Advait Paliwal
2026-03-27 14:04:16 -07:00
parent cba7532d59
commit e2fdf0d505
2 changed files with 9 additions and 1 deletions

View File

@@ -35,7 +35,7 @@
"build": "tsc -p tsconfig.build.json",
"build:native-bundle": "node ./scripts/build-native-bundle.mjs",
"dev": "tsx src/index.ts",
"prepack": "npm run build && node ./scripts/prepare-runtime-workspace.mjs",
"prepack": "node ./scripts/clean-publish-artifacts.mjs && npm run build && node ./scripts/prepare-runtime-workspace.mjs",
"start": "tsx src/index.ts",
"start:dist": "node ./bin/feynman.js",
"test": "node --import tsx --test --test-concurrency=1 tests/*.test.ts",