├── .all-contributorsrc ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── bug_types.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ └── workflow.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ava.config.js ├── eslint.config.js ├── gulpfile.js ├── package.json ├── prettier.config.js ├── src ├── echo.js ├── echo.test.js ├── error.js ├── exec.js ├── exec.test.js ├── fixtures │ ├── dummy.txt │ └── dummy_two.txt ├── helpers │ ├── gulpfiles │ │ ├── exec.test.js │ │ ├── input.test.js │ │ ├── stream.test.js │ │ └── task.test.js │ ├── methods.test.js │ ├── normalize.test.js │ └── snapshot.test.js ├── input.js ├── input.test.js ├── main.d.ts ├── main.js ├── main.test-d.ts ├── options │ ├── custom.js │ ├── debug.js │ ├── debug.test.js │ ├── main.js │ └── main.test.js ├── snapshots │ └── build │ │ └── src │ │ ├── debug.test.js.md │ │ ├── debug.test.js.snap │ │ ├── echo.test.js.md │ │ ├── echo.test.js.snap │ │ ├── exec.test.js.md │ │ ├── exec.test.js.snap │ │ ├── input.test.js.md │ │ ├── input.test.js.snap │ │ ├── options.test.js.md │ │ ├── options.test.js.snap │ │ ├── options │ │ ├── debug.test.js.md │ │ ├── debug.test.js.snap │ │ ├── main.test.js.md │ │ └── main.test.js.snap │ │ ├── stream.test.js.md │ │ ├── stream.test.js.snap │ │ ├── stream │ │ ├── main.test.js.md │ │ └── main.test.js.snap │ │ ├── task.test.js.md │ │ └── task.test.js.snap ├── stream │ ├── main.js │ ├── main.test.js │ ├── options.js │ └── result.js ├── task.js └── task.test.js └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.github/ISSUE_TEMPLATE/bug_types.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/README.md -------------------------------------------------------------------------------- /ava.config.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ehmicky/dev-tasks/ava.config.js' 2 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ehmicky/eslint-config' 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | export * from '@ehmicky/dev-tasks' 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | export { default } from '@ehmicky/prettier-config' 2 | -------------------------------------------------------------------------------- /src/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/echo.js -------------------------------------------------------------------------------- /src/echo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/echo.test.js -------------------------------------------------------------------------------- /src/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/error.js -------------------------------------------------------------------------------- /src/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/exec.js -------------------------------------------------------------------------------- /src/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/exec.test.js -------------------------------------------------------------------------------- /src/fixtures/dummy.txt: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /src/fixtures/dummy_two.txt: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /src/helpers/gulpfiles/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/gulpfiles/exec.test.js -------------------------------------------------------------------------------- /src/helpers/gulpfiles/input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/gulpfiles/input.test.js -------------------------------------------------------------------------------- /src/helpers/gulpfiles/stream.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/gulpfiles/stream.test.js -------------------------------------------------------------------------------- /src/helpers/gulpfiles/task.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/gulpfiles/task.test.js -------------------------------------------------------------------------------- /src/helpers/methods.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/methods.test.js -------------------------------------------------------------------------------- /src/helpers/normalize.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/normalize.test.js -------------------------------------------------------------------------------- /src/helpers/snapshot.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/helpers/snapshot.test.js -------------------------------------------------------------------------------- /src/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/input.js -------------------------------------------------------------------------------- /src/input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/input.test.js -------------------------------------------------------------------------------- /src/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/main.d.ts -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/main.js -------------------------------------------------------------------------------- /src/main.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/main.test-d.ts -------------------------------------------------------------------------------- /src/options/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/options/custom.js -------------------------------------------------------------------------------- /src/options/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/options/debug.js -------------------------------------------------------------------------------- /src/options/debug.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/options/debug.test.js -------------------------------------------------------------------------------- /src/options/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/options/main.js -------------------------------------------------------------------------------- /src/options/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/options/main.test.js -------------------------------------------------------------------------------- /src/snapshots/build/src/debug.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/debug.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/debug.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/debug.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/echo.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/echo.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/echo.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/echo.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/exec.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/exec.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/exec.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/exec.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/input.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/input.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/input.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/input.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/options.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/options.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/options/debug.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options/debug.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/options/debug.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options/debug.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/options/main.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options/main.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/options/main.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/options/main.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/stream.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/stream.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/stream.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/stream.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/stream/main.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/stream/main.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/stream/main.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/stream/main.test.js.snap -------------------------------------------------------------------------------- /src/snapshots/build/src/task.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/task.test.js.md -------------------------------------------------------------------------------- /src/snapshots/build/src/task.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/snapshots/build/src/task.test.js.snap -------------------------------------------------------------------------------- /src/stream/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/stream/main.js -------------------------------------------------------------------------------- /src/stream/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/stream/main.test.js -------------------------------------------------------------------------------- /src/stream/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/stream/options.js -------------------------------------------------------------------------------- /src/stream/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/stream/result.js -------------------------------------------------------------------------------- /src/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/task.js -------------------------------------------------------------------------------- /src/task.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehmicky/gulp-execa/HEAD/src/task.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ehmicky/dev-tasks/tsconfig.json" 3 | } 4 | --------------------------------------------------------------------------------