@getprovi/fizzy-svelte v0.3.1
Fizzy Svelte
A svelte component library for the fizz design library
Chromatic
Latest version of the storybook is hosted at https://master--60afed46da1d8b00397b6914.chromatic.com/
Local Dev
To develop new storybook components, run:
yarn storybookOne Time Setup
Before you can see the changes updated automatically you need to run a pair of commands that will tell yarn that you are using
this project in local development manner. In this folder yarn link and in the main app yarn link "@getprovi/fizzy-svelte".
Changes Updating in Main App
To run the local development server so that you can see the changes in the main app, run (in this folder)
yarn devIn the main app folder, replace the dependency in package.json with a reference to this line (assuming the two projects
are next to each other on your system) "@getprovi/fizzy-svelte": "file:../fizzy-svelte",
Publishing a new version
git checkout master
npm version minor
git push && git push --tagsThe jenkins server will pick up the change and build and push a new release in about 5-10 mins.
Note: If you just want to bump the patch, you can replace minor with patch in the second command