Within my package.json configuration file, the "scripts" section contains numerous commands structured as shown below.
"scripts" {
"script1": "command example",
"script2": "command example",
"script3": "command example",
"script4": "command example",
"script5": "command example",
"script6": "command example",
"script7": "command example",
...
}
Is there a method to relocate these commands to a separate file?
One idea I have is to transfer them to a file named bin/commands.js
.