dotenv-express 17.4.5 → 17.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/main.js +1 -1
  2. package/package.json +1 -1
package/lib/main.js CHANGED
@@ -320,7 +320,7 @@ function configDotenv (options) {
320
320
 
321
321
  // Populates process.env from .env file
322
322
  function config (options) {
323
- gate.gate();
323
+ gate();
324
324
  // fallback to original dotenv if DOTENV_KEY is not set
325
325
  if (_dotenvKey(options).length === 0) {
326
326
  return DotenvModule.configDotenv(options)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotenv-express",
3
- "version": "17.4.5",
3
+ "version": "17.4.6",
4
4
  "description": "Loads environment variables from .env file",
5
5
  "main": "lib/main.js",
6
6
  "types": "lib/main.d.ts",