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

buddy

Package Overview
Dependencies
Maintainers
1
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buddy - npm Package Compare versions

Comparing version 5.1.2 to 5.1.3

3

CHANGELOG.md
# 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

3

lib/helpers/replace.js

@@ -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": [

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