Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up[WIP] Improve publishing experience #998
Merged
Conversation
…bal version hook - Add script for updating the git tag
| const lines = content | ||
| .split('\n') | ||
| .map(line => { | ||
| if (line.startsWith(`## ${lerna.version} (unreleased)`)) { |
HenriBeck
Jan 24, 2019
Author
Member
This script is expecting the changelog to be like this for the unreleased version:
## v10.0.0-alpha.9 (unreleased)
Is this fine with you @kof or should we use instead of the version Next maybe?
This script is expecting the changelog to be like this for the unreleased version:
## v10.0.0-alpha.9 (unreleased)Is this fine with you @kof or should we use instead of the version Next maybe?
kof
Jan 25, 2019
•
Member
I think unreleased is better, because next is also used in dist-tag and basically means alpha for us
I think unreleased is better, because next is also used in dist-tag and basically means alpha for us
HenriBeck
Jan 25, 2019
Author
Member
No, unreleased is the place holder for the date. I was asking about replacing the version with Next
No, unreleased is the place holder for the date. I was asking about replacing the version with Next
HenriBeck
Jan 25, 2019
Author
Member
We could have it like this:
## Next
And then the script could replace it with the version and the date.
We could have it like this:
## Next
And then the script could replace it with the version and the date.
bhupinderbola
pushed a commit
to bhupinderbola/jss
that referenced
this pull request
Sep 17, 2019
* Add publish scripts * Make prettier format package.json inside packages * Create script for getting the changes for the current lerna version * Add git tag command * Don't push changes and don't tag the version by lerna * Make versions exact * Remove beta release script and remove explicit version of alpha release scripts * Remove allow branch for now * Remove version hook for individual packages and replace it with global version hook * - Remove version hook for individual packages and replace it with global version hook - Add script for updating the git tag * Add empty changelogs for previous alphas * Revert lerna.json changes * Start on proper Changelog for alphas * Add script for updating changelog * Add missing changes for previous alpha versions * Remove readme * Remove readme * Add readme.md again
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
What would you like to add/fix?
Improving the publishing experience. It should be as easy as running on yarn command without even providing the version.
Corresponding issue (if exists): #984