Releases: linhntaim/dotenv-packed
Releases · linhntaim/dotenv-packed
Dot-Env Packed v3.1.0
Dot-Env Packed v3.0.0
Changes:
- Upgrade
dotenv-conversionto^3.0.0. - Fix
README.md. - Update ignore files.
Dot-Env Packed v2.0.0
Rework on v1:
- Fresh base code with same idea.
- New integrated:
dotenv-flow. Old:dotenv,dotenv-expand,dotenv-conversion. parseEnvandgetEnvfunctions are removed.- New
packfunction:- Has the same idea of the old
parseEnvfunction. - Its return value has two properties:
parsedandget.parsedis on object which has the same idea of what the oldparseEnvfunction returns.getis a function that has the same idea of the oldgetEnvfunction.
- Has the same idea of the old
- Preload feature is added.
Dot-Env Packed v1.2.5
- Update dependencies & more
Dot-Env Packed v1.2.2
- Update vendors.
- Update some in README.md.
Dot-Env Packed v1.2.0
Changelog:
getEnvnow accepts default value as a second params.- Default value is
null. - It is used when the enviroment variables is not set in anywhere (
process.envor.envfile).
- Default value is
Dot-Env Packed v1.1.0
Features:
parseEnv:- Parse, expand, convert enviroment variables from file.
- Return object containing parsed variables from file (
{parsed: { ... }}).
getEnv:- Get enviroment variables (converted from
process.env) after being appended by parsed, expanded and converted enviroment variables from file.
- Get enviroment variables (converted from