Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dotenv-webpack

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotenv-webpack - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

dist/index.js

@@ -72,3 +72,3 @@ 'use strict';

Object.keys(blueprint).map(function (key) {
var value = env[key];
var value = env[key] || env[key] === '' ? env[key] : vars[key];
if (!value && options.safe) {

@@ -75,0 +75,0 @@ throw new Error('Missing environment variable: ' + key);

{
"name": "dotenv-webpack",
"description": "A simple webpack plugin to support dotenv.",
"version": "1.5.0",
"version": "1.5.1",
"main": "index.js",

@@ -53,3 +53,3 @@ "scripts": {

"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai": "^4.0.0",
"esdoc": "^0.5.2",

@@ -56,0 +56,0 @@ "ghooks": "^2.0.0",

@@ -91,2 +91,3 @@ # dotenv-webpack

* **systemvars** (`false`) - Set to true if you would rather load all system variables as well (useful for CI purposes).
* **silent** (`false`) - If true, all warnings will be surpressed.

@@ -93,0 +94,0 @@ ### LICENSE

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc