npm i @ferlab/ui
Styles are installed separetly
In order to see and test all available components
First you need to build the components
npm run build
or run in development mode
npm start
cd ferlab-ui/storybook
npm start
All work must be done based on master All styles automatically reference to the @ferlab/styles package
To publish a new release once a PR as been validated and merged
- Try to install the package to make sure everything work corretly
cd [test dir] && npm i [full_path]/ferlab-ui/packages/ui
- Delete core folder to remove deleted files
rm -rf core/
- Prepare the package
npm run build
- On master Update package.json version
- Create a tag to the new version
git tag [semantic version]
- Login to npm
npm login
- Push the new version
npm publish