Comparing version 5.1.2 to 5.1.3
# Changelog | ||
**5.1.3** - June 29, 2016 | ||
* no longer inline `process.env.X` if value is `undefined`, and add `process.env` polyfill to ensure backwards compatibility | ||
**5.1.2** - June 26, 2016 | ||
@@ -4,0 +7,0 @@ * update dependencies |
@@ -58,3 +58,4 @@ 'use strict'; | ||
if (match[1] == ENV_RUNTIME) value = "'browser'"; | ||
matches[match[0]] = value; | ||
// Don't replace if undefined | ||
if (value) matches[match[0]] = value; | ||
} | ||
@@ -61,0 +62,0 @@ |
if ('undefined' === typeof self) var self = this; | ||
if ('undefined' === typeof global) var global = self; | ||
if ('undefined' === typeof process) var process = {env:{}}; | ||
if (self._m_ == null) self._m_ = {}; | ||
@@ -4,0 +5,0 @@ if (self.require == null) { |
{ | ||
"name": "buddy", | ||
"description": "A fast, simple build tool for web projects.", | ||
"version": "5.1.2", | ||
"version": "5.1.3", | ||
"author": "popeindustries <alex@pope-industries.com>", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135390
3133