-
-
Notifications
You must be signed in to change notification settings - Fork 667
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
build: fix package miss files #2786
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm surprised this is the issue. Is dist
removed during some part of the publishing process?
.gitignore
Outdated
/dist/*.generated.d.ts | ||
/dist/*.map | ||
/dist/asc.js | ||
/dist/assemblyscript.js | ||
/dist/importmap.json | ||
/dist/web.js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/dist/*.generated.d.ts | |
/dist/*.map | |
/dist/asc.js | |
/dist/assemblyscript.js | |
/dist/importmap.json | |
/dist/web.js | |
dist/*.generated.d.ts | |
dist/*.map | |
dist/asc.js | |
dist/assemblyscript.js | |
dist/importmap.json | |
dist/web.js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, please make sure my suggestion works after committing it. For all I know, the leading slash matters.
Yes, It is weird that gitignore in dist will influence npm package. |
It appears to be a peculiarity with the |
This breaks the npm package |
@JulianDM1995 This hasn't been published yet. In fact, this'll fix the npm package. |
This allows AssemblyScript#2786 (which fixes the regression from AssemblyScript#2757) to be published as soon as possible. Note that the main branch is the only branch that can be published, since `ref: main` is passed to actions/checkout.
No description provided.