Concise scripts
Open
- Dominant language
- TypeScript
- Stars
- 6.4k
- Forks
- 128
- Avg merge
- 4d 10h
- Merged PRs (30d)
- 4
Description
Allow users to define scripts like so:
```json
"wireit": {
"patch": "patch-package",
"husky": "npx husky install",
"postinstall": {
"dependencies": [
"patch",
"husky"
]
}
}
```
equivalent to
```json
"wireit": {
"patch": {
"command": "patch-package"
},
"husky": {
"command": "npx husky install"
},
"postinstall": {
"dependencies": [
"patch",
"husky"
]
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.