Skip to main content

๐Ÿ“„ Separate configuration

Create a configurationโ€‹

Creata a scripts.json file at the root of your project directory.

See all supported configuration file fomats

scripts.json
{
"dev": {
"alias": "๐ŸŒŸ Dev",
"command": "yarn start",
"desc": "Start a development server"
},
"build": {
"alias": "๐Ÿ“ฆ Build",
"command": "yarn build",
"desc": "Create a production build"
},
"test": {
"alias": "๐Ÿงช Test",
"command": "yarn test",
"desc": "Run tests"
}
}