├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── simple.js ├── lib └── spawn-command.js ├── package.json └── test ├── fixtures └── commit └── spawn-command-test.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .DS_Store 4 | .*.sw[op] 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/examples/simple.js -------------------------------------------------------------------------------- /lib/spawn-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/lib/spawn-command.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/test/fixtures/commit -------------------------------------------------------------------------------- /test/spawn-command-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/spawn-command/HEAD/test/spawn-command-test.js --------------------------------------------------------------------------------