├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.d.ts ├── config.js ├── dotenv-expand.png ├── lib ├── main.d.ts └── main.js ├── package.json └── tests ├── .env.test ├── main.js └── types ├── test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: motdotla 2 | custom: https://www.dotenvx.com 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/README.md -------------------------------------------------------------------------------- /config.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/config.js -------------------------------------------------------------------------------- /dotenv-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/dotenv-expand.png -------------------------------------------------------------------------------- /lib/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/lib/main.d.ts -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/package.json -------------------------------------------------------------------------------- /tests/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/tests/.env.test -------------------------------------------------------------------------------- /tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/tests/main.js -------------------------------------------------------------------------------- /tests/types/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/tests/types/test.ts -------------------------------------------------------------------------------- /tests/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motdotla/dotenv-expand/HEAD/tests/types/tsconfig.json --------------------------------------------------------------------------------