innowise-custom-components-lib-ui
v1.0.20
Published
---
Readme
custom-components-lib
Project documentation
- Task: custom-components-lib
- How to run the app:
- Go to
https://github.com/Anatoli-Paliukhovich/custom-components-lib/pull/1 - Clone the repo locally
[email protected]:Anatoli-Paliukhovich/custom-components-lib.git:
$ git clone [email protected]:Anatoli-Paliukhovich/custom-components-lib.git- Go to folder
custom-components-lib:
$ cd custom-components-lib- Switch the branches:
$ git checkout custom-components-lib-dev- Install all dependencies:
$ npm install- Using the app as an npm package:
$ npm install innowise-custom-components-lib-uiBuild scripts
# build in production mode
$ npm run build
# run storybook
$ npm run storybook
# run tests
$ npm run test
The structure of files and folders
├── .husky
├── .storybook
├── src
│ ├── components
│ │ ├── Button
│ │ ├── Checkbox
│ │ ├── Input
│ │ ├── Modal
│ │ ├── Select
│ │ └── Switch
│ ├── stories
│ │ └── all the stories of the components
│ ├── unitTests
│ │ └── all the tests for the components
│ ├── common.module.scss
│ └── index.tsx
├── .prettierrc
├── declarations.d.ts
├── eslint.config.js
├── jest.config.ts
├── jest.d.ts
├── package-lock.json
├── package.json
├── README.md
├── setupTests.ts
├── tsconfig.json
└── webpack.config.ts
