-
Notifications
You must be signed in to change notification settings - Fork 4
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
ci: add semantic-release #6
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #6 +/- ##
=======================================
Coverage 99.95% 99.95%
=======================================
Files 186 186
Lines 2366 2366
Branches 563 563
=======================================
Hits 2365 2365
Misses 1 1 Continue to review full report at Codecov.
|
package.json
Outdated
@@ -1,13 +1,13 @@ | |||
{ | |||
"name": "@conflux/react-ui", | |||
"version": "0.0.1", | |||
"name": "@conflux-ui/react", |
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.
why change name from react-ui to react?
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.
Cause there's @conflux-ui
as the org name, @conflux-ui/react-ui
is a bit noisy.
9f6f941
to
6e5fecd
Compare
92c6181
to
7ff02f7
Compare
use https://github.com/semantic-release/semantic-release workflow
the mechanism of semantic-release is complicate, the docs can be found at https://github.com/semantic-release/semantic-release/blob/master/docs/usage/README.md
release
field ofpackage.json
fileAngular
one at https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-rules.js@beta
chanel (user can install it withyarn add @conflux-ui/react@beta
)@latest
chanel (user can install it withyarn add @conflux-ui/react
)dev
branchdev
branch, release to npm@beta
channel, the version number will bex.x.x-beta.x
dev
tomaster
, release to npm@latest
channel (default channel)master
back todev
This change is