Semantic-UI Toolkit - Inloco theme
You can see and interact with the components here.
Installing
npm install --save supernova-inloco
#or
yarn add supernova-inloco
Contributing
We're using yarn
's lockfile, so we'll assume that it's the one being used, but note that npm
will also work.
Setup
To setup the project, you just need to have Yarn installed and run it to install the project's dependencies:
yarn
Then we run the command below to update css with our customizations:
yarn run build:css
Watch (Hot reloading)
To update css on file change:
yarn run watch:css
Storybook
We're using Storybook, to easily see and test the components.
Run it with:
yarn storybook
Then open it at the url indicated on the terminal, probably: http://localhost:9001/
.
Release
To release supernova, follow these steps (let's pretend we're releasing 1.2.3
):
- Update the version in
package.json
to the new one (in this case1.2.3
). - Create a commit with the version number as the title:
v1.2.3
:
git commit -m v1.2.3
- Create a new git tag:
git tag -a v1.2.3 -m v1.2.3
- Push the commit and the tag to master:
git push origin master --tags
- Publish to npm (you'll need to be logged in as In Loco for that):
npm publish
Deploying Storybook
After releasing a new version, it's important to also update the Storybook running in our gh page to display the new changes.
This can be done by running a simple yarn script:
yarn deploy:storybook