Add composer-tasks
This commit is contained in:
parent
dbcfd2e148
commit
ed165b43e9
|
@ -24,10 +24,30 @@
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/manuth/mantra#readme",
|
"homepage": "https://github.com/manuth/mantra#readme",
|
||||||
"scripts-descriptions": {
|
"scripts-descriptions": {
|
||||||
"initialize": "Initializes the project."
|
"build": "Builds the project.",
|
||||||
|
"release": "Performs a release-build.",
|
||||||
|
"rebuild": "Rebuilds the project.",
|
||||||
|
"rebuild-release": "Rebuilds the project in release-mode.",
|
||||||
|
"watch": "Builds the project in watch-mode.",
|
||||||
|
"watch-release": "Performs a release-build in watch-mode.",
|
||||||
|
"stop": "Stops building the project in watch-mode.",
|
||||||
|
"stop-release": "Stops performing the release-build in watch-mode.",
|
||||||
|
"clean": "Cleans the project",
|
||||||
|
"initialize": "Initializes the project.",
|
||||||
|
"lint": "Lints the project."
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"initialize": "npm run initialize"
|
"build": "npm run build",
|
||||||
|
"release": "npm run release",
|
||||||
|
"rebuild": "npm run rebuild",
|
||||||
|
"rebuild-release": "npm run rebuild-release",
|
||||||
|
"watch": "npm run watch",
|
||||||
|
"watch-release": "npm run watch-release",
|
||||||
|
"stop": "npm run stop",
|
||||||
|
"stop-release": "npm run stop-release",
|
||||||
|
"clean": "npm run clean",
|
||||||
|
"initialize": "npm run initialize",
|
||||||
|
"lint": "npm run lint"
|
||||||
},
|
},
|
||||||
"require": {},
|
"require": {},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
|
Loading…
Reference in a new issue