Comparing version 1.0.10 to 1.0.11
@@ -7,3 +7,2 @@ /* This Source Code Form is subject to the terms of the Mozilla Public | ||
var spawn = require("child_process").spawn; | ||
var extend = require("lodash").extend; | ||
var normalizeBinary = require("./utils").normalizeBinary; | ||
@@ -24,3 +23,3 @@ var parse = require("shell-quote").parse; | ||
var profilePath = options.profile; | ||
var env = extend({}, process.env, options.env || {}); | ||
var env = Object.assign({}, process.env, options.env || {}); | ||
var args = []; | ||
@@ -27,0 +26,0 @@ if (profilePath) { |
{ | ||
"name": "fx-runner", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "A node cli to control Firefox", | ||
@@ -29,3 +29,2 @@ "main": "index.js", | ||
"commander": "2.9.0", | ||
"lodash": "4.17.11", | ||
"shell-quote": "1.6.1", | ||
@@ -41,3 +40,3 @@ "spawn-sync": "1.0.15", | ||
"dive": "0.3.1", | ||
"mocha": "2.1.0", | ||
"mocha": "6.1.4", | ||
"sandboxed-module": "2.0.0" | ||
@@ -44,0 +43,0 @@ }, |
@@ -7,3 +7,2 @@ /* This Source Code Form is subject to the terms of the Mozilla Public | ||
var path = require("path"); | ||
var extend = require("lodash").extend; | ||
var cp = require("child_process"); | ||
@@ -15,3 +14,3 @@ | ||
options = options || {}; | ||
var env = extend({}, options.env, process.env); | ||
var env = Object.assign({}, options.env, process.env); | ||
@@ -18,0 +17,0 @@ return cp.exec("node " + fxRunner + " " + args, { |
Sorry, the diff of this file is not supported yet
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
47206
6
15
624
- Removedlodash@4.17.11
- Removedlodash@4.17.11(transitive)