Storybook documentation and sandbox
- Installation
- Contributing
- Package structure convention
- Code style guide
- Component Statuses
- Screenshot testing
npm i
npm start
npm i
npm run build
Build results in the dist
folder on the root and in the folder dist
in each package in the packages folder.
es5
-ES5
build with CommonJS modulesmodern
-ES2020
build with esm modules.cssm
-ES5
build with commonjs modules.CSS modules
are supplied as is, not compiled.esm
-ES5
build with esm modules.
We have very precise rules over how our git commit messages can be formatted. This leads to more readable messages that are easy to follow when looking through the project history. But also, we use the git commit messages to generate the AngularJS change log.
The commit message formatting can be added using a typical git workflow or through the use of a CLI wizard (Commitizen).
To use the wizard, run npm run cm
in your terminal after staging your changes in git.
Follow this commands:
git add .
npm run cm # run the commitizen utility to create a commit
git push
The scope could be following the name of the package of the commit change. For example button
, input
, etc...