๐ Separate configuration
Create a configurationโ
Creata a scripts.json
file at the root of your project directory.
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"
}
}