Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(vats): include index.js in NPM package #8815

Merged
merged 1 commit into from
Jan 25, 2024
Merged
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
5 changes: 2 additions & 3 deletions packages/vats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,8 @@
"src/",
"scripts/",
"tools/",
"*.json",
"globals.d.ts",
"exported.js"
"index.*",
"exported.*"
Comment on lines +58 to +59
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is that normally necessary? surely index.js is included in packages by default

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The files pointed to by main and bin are supposed to be automatically includer, but apparently there are not. Maybe another yarn gremlin?

],
"publishConfig": {
"access": "public"
Expand Down
Loading