script-launcher
Version:
Enhance your package.json scripts with features like: menus, functions, arrays, concurrency and many more.
23 lines (22 loc) • 838 B
JSON
{
"menu": {
"description": "action",
"serve:Builds and serves your app, rebuilding on file changes.": {
"description": "environment",
"dev:Builds and serves your app for the development environment.": "serve:dev",
"acc:Builds and serves your app for the acceptance environment.": "serve:acc",
"prd:Builds and serves your app for the production environment.": "serve:production"
},
"build:Compiles your app into an output directory.": {
"description": "environment",
"dev:Builds your app for the development environment.": "build:dev",
"acc:Builds your app for the acceptance environment.": "build:acc",
"prd:Builds your app for the production environment.": "build:production"
}
},
"options": {
"menu": {
"defaultChoice": "serve:development"
}
}
}