Installation
How to install @constela/cli
Global Installation
bash
npm install -g @constela/cliUsing npx
bash
npx constela <command>Local Installation
bash
npm install --save-dev @constela/cliThen add scripts to your package.json:
json
{
"scripts": {
"build": "constela build src/app.json",
"dev": "constela dev src/app.json"
}
}