mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 10:26:20 +00:00
12 lines
416 B
Markdown
12 lines
416 B
Markdown
# Building
|
|
|
|
Build process is implemented using NPM scripts installed in the **package.json** file.
|
|
|
|
| Command | Description
|
|
|---|---|
|
|
|`npm run build` | Build the project in debug mode. |
|
|
|`npm run build:release` | Build the project in release mode. |
|
|
|`npm run watch` | Watch the source and behaviors, auto-rebuilds. |
|
|
|`npm run clean` | Deletes built JavaScript files. |
|
|
|`npm start` | Alias for `npm run watch`.
|