├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── SECURITY.md └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── common.js ├── index.js ├── package.json └── test └── test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | 5 | test_data/ 6 | 7 | *~ 8 | *.swp 9 | .DS_Store 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/README.md -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- 1 | module.exports.cmdArrayAttr = '__cmdStart__'; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfischer/shelljs-exec-proxy/HEAD/test/test.js --------------------------------------------------------------------------------