google / google/wireit

Concise scripts

Open
#647 2 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.