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

mrm-core

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mrm-core - npm Package Compare versions

Comparing version 7.1.13 to 7.1.14

4

package.json
{
"name": "mrm-core",
"version": "7.1.13",
"version": "7.1.14",
"description": "Utilities to make tasks for Mrm",

@@ -57,3 +57,3 @@ "author": {

],
"gitHead": "8a7ffeeb126cf08d78db3135e50c4fec45fae989"
"gitHead": "9c69e84acf5fd7f40bd7a8e84e3ce9be3484a157"
}
// @ts-check
const { spawnSync } = require('child_process');
const isWindows = require('./isWindows');
const escapeArguments = require('./escapeArguments');

@@ -11,7 +10,6 @@

* @param {string} command
* @param {...any} args
* @param {...any} args
*/
function execCommand(exec, command, ...args) {
exec = exec || spawnSync;
command = isWindows() ? `${command}.cmd` : command;
args[0] = escapeArguments(args[0]);

@@ -18,0 +16,0 @@

@@ -5,3 +5,3 @@ // @ts-check

/**
* Rerturn true when we are in a win32 environement
* Return true when we are in a win32 environment
*/

@@ -8,0 +8,0 @@ function isWindows() {

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