-
Notifications
You must be signed in to change notification settings - Fork 26
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
Wrong version number published to npm #503
Comments
Right now the npm release script doesn't work at all. It fails with
To do a manual release we currently have to:
|
We should release a new version anyhow, so we cam revisit hiw this is right now. |
The problem was that first the package was built to dist and then the current I fixed this with:
|
Using the current release script will lead to a release with an invalid version number on npmjs.com.
Reason: Because the target files will be copied to the
dist
folder before the version number will be increased bynp
, the package will be released with the preexisting verison number.Note: The release of version 1.1.0 has been fixed manually.
The text was updated successfully, but these errors were encountered: