├── .all-contributorsrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── assets ├── node-env-run-logo.png └── node-env-run-screenshot.png ├── bin └── node-env-run.ts ├── lib ├── __mocks__ │ └── utils.ts ├── __tests__ │ ├── run-invalid-script.ts │ ├── run-missing-env-file.ts │ ├── run-with-force.ts │ ├── run-without-force.ts │ ├── run-without-script-parameter.ts │ └── utils.ts ├── cli.ts ├── definitions.d.ts └── utils.ts ├── package.json └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | __mocks__/ 2 | dist/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | __mocks__/ 3 | bin/ 4 | coverage/ -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message=":bookmark: Release v%s" -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/README.md -------------------------------------------------------------------------------- /assets/node-env-run-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/assets/node-env-run-logo.png -------------------------------------------------------------------------------- /assets/node-env-run-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/assets/node-env-run-screenshot.png -------------------------------------------------------------------------------- /bin/node-env-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/bin/node-env-run.ts -------------------------------------------------------------------------------- /lib/__mocks__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__mocks__/utils.ts -------------------------------------------------------------------------------- /lib/__tests__/run-invalid-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/run-invalid-script.ts -------------------------------------------------------------------------------- /lib/__tests__/run-missing-env-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/run-missing-env-file.ts -------------------------------------------------------------------------------- /lib/__tests__/run-with-force.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/run-with-force.ts -------------------------------------------------------------------------------- /lib/__tests__/run-without-force.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/run-without-force.ts -------------------------------------------------------------------------------- /lib/__tests__/run-without-script-parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/run-without-script-parameter.ts -------------------------------------------------------------------------------- /lib/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/__tests__/utils.ts -------------------------------------------------------------------------------- /lib/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/cli.ts -------------------------------------------------------------------------------- /lib/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/definitions.d.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkundel/node-env-run/HEAD/tsconfig.json --------------------------------------------------------------------------------