@yuno-payments/design-system-web
v0.54.2
Published
This project constains all the reusable (dumb) components that we will use into our applications. This is built using [React 18](https://reactjs.org/), [TypeScript](https://www.typescriptlang.org/), [Material UI](https://mui.com/), [Emotion](https://emo
Maintainers
Keywords
Readme
Yuno Design System Web
This project constains all the reusable (dumb) components that we will use into our applications.
This is built using React 18, TypeScript, Material UI, Emotion and Storybook
To publish
Publish to the latest tag (the latest stable version from master)
This command:
npm publish --access public- Automatically runs the build (via the
prepublishOnlyscript). - Publishes the current package version to the
latesttag on npm.
Publish to the beta tag (candidate versions from the release/candidate branch)
This command:
npm publish --access public --tag beta- Automatically runs the build.
- Publishes the current package version to the
betatag on npm. - Use this for release candidates.
Alias for publishing to beta
You can also use the script defined in package.json:
npm run publish-beta- This does the same as the command above.
Publish to a custom tag (e.g., your feature branch)
This command:
npm publish --access public --tag nico- Publishes the current package version to the
nicotag. - Useful for testing or personal development versions.
View all published versions and tags
This command:
npm view- Shows all published versions and tags for the package.
Important notes
- Always increment the version in
package.jsonbefore publishing a new version. - You cannot overwrite an already published version.
- The build runs automatically before publishing, thanks to the
prepublishOnlyscript.
