@trileuco/triskel-react-ui
v3.0.1
Published
Triskel UI React Componenets
Readme
UI React Components
UI React Components (UIRC) is a react components library for build your React applications.
Clone repository
git clone https://bitbucket.org/trileuco/triskel-react-ui.gitcd triskel-react-uiDocumentation
To run documentation in development mode:
npm run docz:devTo build documentation in production mode:
npm run docz:buildBuild to test in local environment
If you want to test in your client project some changes done in this project, you should build it to a zip file and use file dependency. To do that run npm run build_and_pack and then change the package.json of the client project to reference the generated file with something like:
"@trileuco/triskel-react-ui": "file:../../triskel/triskel-react-ui/lib/trileuco-triskel-react-ui-0.12.0-SNAPSHOT.tgz"After do that, remove local dependency and install it without cache:
rm -rf node_modules/@trileuco/triskel-react-ui/
npm install --no-cache @trileuco/triskel-react-ui