0.1.1 • Published 4 years ago

guruhotel-framework v0.1.1

Weekly downloads
-
License
-
Repository
gitlab
Last release
4 years ago

This project was built with Storybook and Create-react-app

Available Scripts

In the project directory, you can run:

yarn dist

Compile files to the folder dist

yarn storybook

Start a server with the docs

yarn build-storybook

Compile storybook app like static files to deploy (Zeit now) the files are output on build folder

How to deploy

This is the workflow to make updates:

  1. Every component must be created on src/components folder and exported on src/components/index.js

  2. Add the respective story on src/stories

  3. Execute yarn dist to compile updated files

  4. Create a commit and push changes

  5. Create a tag git tag -a vmajor.patch.minor -m "Release message" ej. git tag -a v0.1.1 -m "add Button and Link components"

  6. Push tag git push origin vmajor.patch.minor ej. git push origin v0.1.1