crispy-ui
v2.13.14
Published
* New components should be added under `/components/[component_name]` path. * For each new component, an index.js file should be created with the following content. ```javascript import [component_name] from './[component_name]';
Downloads
183
Readme
crispy-ui
Development
- New components should be added under
/components/[component_name]
path. - For each new component, an index.js file should be created with the following content.
import [component_name] from './[component_name]'; export default [component_name];
- This project uses sass/scss as css pre-processor.
.scss
files should include an underscore as prefix in their names. The valid format is as following:_[component_name].scss
.
Publishing
- To release new version of package, it is needed to add the changes to git first.
- After that new version which is wanted to be published should be indicated with the command
npm version [version_name]
. - At last, you can publish the new version with the command
npm publish
.