Skip to content

Releases: linhntaim/dotenv-packed

Dot-Env Packed v3.1.0

06 Nov 04:31

Choose a tag to compare

  • Upgrade dotenv-conversion to 3.1.0.
  • Test now excludes config.js.
  • CI now uses Github Actions instead of travis.

Dot-Env Packed v3.0.0

15 Oct 14:15

Choose a tag to compare

Changes:

  • Upgrade dotenv-conversion to ^3.0.0.
  • Fix README.md.
  • Update ignore files.

Dot-Env Packed v2.0.0

10 Oct 10:32

Choose a tag to compare

Rework on v1:

  • Fresh base code with same idea.
  • New integrated: dotenv-flow. Old: dotenv, dotenv-expand, dotenv-conversion.
  • parseEnv and getEnv functions are removed.
  • New pack function:
    • Has the same idea of the old parseEnv function.
    • Its return value has two properties: parsed and get.
      • parsed is on object which has the same idea of what the old parseEnv function returns.
      • get is a function that has the same idea of the old getEnv function.
  • Preload feature is added.

Dot-Env Packed v1.2.5

29 Sep 11:54

Choose a tag to compare

  • Update dependencies & more

Dot-Env Packed v1.2.2

05 Apr 14:58

Choose a tag to compare

  • Update vendors.
  • Update some in README.md.

Dot-Env Packed v1.2.0

26 Dec 16:22

Choose a tag to compare

Changelog:

  • getEnv now accepts default value as a second params.
    • Default value is null.
    • It is used when the enviroment variables is not set in anywhere (process.env or .env file).

Dot-Env Packed v1.1.0

17 Dec 16:52

Choose a tag to compare

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.