28 lines
329 B
Markdown
28 lines
329 B
Markdown
# lowcoder comp lib
|
|
|
|
## Start
|
|
|
|
Start dev server to develop your comp lib.
|
|
|
|
```bash
|
|
yarn start
|
|
|
|
# or
|
|
|
|
npm start
|
|
```
|
|
|
|
## Build
|
|
|
|
Build current comp lib into a .tgz file that you can upload it to the Lowcoder Comp Market.
|
|
|
|
Before build you should change the version in package.json file.
|
|
|
|
```bash
|
|
yarn build
|
|
|
|
# or
|
|
|
|
npm run build
|
|
```
|