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

machinepack

Package Overview
Dependencies
Maintainers
5
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

machinepack - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

11

bin/machinepack-exec.js

@@ -118,2 +118,3 @@ #!/usr/bin/env node

Machinepacks.getMachinesDir({

@@ -129,3 +130,2 @@ dir: Path.resolve(process.cwd(), inputs.dir)

Machinepacks.runMachineInteractive({

@@ -138,3 +138,4 @@ machinepackPath: machinepackPath,

name: inputName,
value: inputValue
value: inputValue,
protect: false
});

@@ -170,3 +171,3 @@ return memo;

error: function (err){
console.error('Unexpected error occurred:\n',err);
console.error('Unexpected error occurred:\n',typeof err === 'object' && err instanceof Error ? err.stack : err);
},

@@ -229,2 +230,6 @@ notFound: function (){

_.each(result.withInputs, function (configuredInput){
// Skip protected inputs (they need to be re-entered)
if (configuredInput.protect) return;
cmd += ' ';

@@ -231,0 +236,0 @@ cmd += '--'+configuredInput.name+'=\''+configuredInput.value.replace(/'/g,'\'\\\'\'')+'\'';

{
"name": "machinepack",
"version": "2.0.4",
"version": "2.0.5",
"description": "CLI tool for working with machinepacks and their machines.",

@@ -5,0 +5,0 @@ "bin": {

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