Comparing version 1.3.2 to 1.3.3
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://github.com/microlinkhq/tinyspawn", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"types": "src/index.d.ts", | ||
@@ -20,2 +20,6 @@ "main": "src/index.js", | ||
{ | ||
"name": "Alec Larson", | ||
"email": "1925840+aleclarson@users.noreply.github.com" | ||
}, | ||
{ | ||
"name": "Jeff Jassky", | ||
@@ -58,3 +62,2 @@ "email": "jeff@jeffjassky.com" | ||
"nano-staged": "latest", | ||
"npm-check-updates": "latest", | ||
"simple-git-hooks": "latest", | ||
@@ -78,3 +81,2 @@ "standard": "latest", | ||
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", | ||
"prerelease": "npm run update:check", | ||
"pretest": "npm run lint", | ||
@@ -84,5 +86,3 @@ "release": "standard-version -a", | ||
"release:tags": "git push --follow-tags origin HEAD:master", | ||
"test": "c8 ava", | ||
"update": "ncu -u", | ||
"update:check": "ncu -- --error-level 2" | ||
"test": "c8 ava" | ||
}, | ||
@@ -89,0 +89,0 @@ "license": "MIT", |
@@ -12,3 +12,3 @@ <div align="center"> | ||
**tinyspawn** is a minimalistic [child_process](https://nodejs.org/api/child_process.html) wrapper with following features: | ||
**tinyspawn** is a minimalistic [`child_process`](https://nodejs.org/api/child_process.html) wrapper with following features: | ||
@@ -195,2 +195,6 @@ - Small (~80 LOC, 835 bytes). | ||
## Related | ||
- [tinyrun](https://github.com/Kikobeats/tinyrun) – CLI for executing multiple commands in parallel with minimal footprint (~2KB). | ||
## License | ||
@@ -201,2 +205,2 @@ | ||
> [microlink.io](https://microlink.io) · GitHub [microlink.io](https://github.com/microlinkhq) · Twitter [@microlinkhq](https://twitter.com/microlinkhq) | ||
> [microlink.io](https://microlink.io) · GitHub [microlink.io](https://github.com/microlinkhq) · X [@microlinkhq](https://x.com/microlinkhq) |
@@ -14,3 +14,3 @@ import { ChildProcess, SpawnOptions } from 'child_process'; | ||
declare function extend(defaults?: ExtendOptions): (input: string, args?: string[] | ExtendOptions, options?: ExtendOptions) => SubprocessPromise; | ||
declare function extend(defaults?: ExtendOptions): (input: string, args?: (string | false | null | undefined)[] | ExtendOptions, options?: ExtendOptions) => SubprocessPromise; | ||
@@ -17,0 +17,0 @@ declare const $: ReturnType<typeof extend> & { |
13167
15
204