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

fx-runner

Package Overview
Dependencies
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fx-runner - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

CODE_OF_CONDUCT.md

3

lib/run.js

@@ -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

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