🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@matrix42/cli-cryptography

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@matrix42/cli-cryptography - npm Package Compare versions

Comparing version

to
0.1.1

7

dist/dotnet.js
"use strict";
// noinspection DuplicatedCode
Object.defineProperty(exports, "__esModule", { value: true });

@@ -12,3 +11,2 @@ exports.DotNet = void 0;

const output = [];
const errors = [];
const dotNetProcess = child_process_1.spawn(DotNet.appName, args);

@@ -18,5 +16,2 @@ dotNetProcess.stdout.on('data', data => {

});
dotNetProcess.stderr.on('data', data => {
errors.push(data.toString());
});
dotNetProcess.on('close', code => {

@@ -27,3 +22,3 @@ if (code === 0) {

else {
reject(new Error(errors.join('\n')));
reject(new Error(output.join()));
}

@@ -30,0 +25,0 @@ });

@@ -1,3 +0,1 @@

// noinspection DuplicatedCode
import {spawn} from 'child_process'

@@ -14,3 +12,2 @@

const output: string[] = []
const errors: string[] = []
const dotNetProcess = spawn(DotNet.appName, args)

@@ -20,5 +17,2 @@ dotNetProcess.stdout.on('data', data => {

})
dotNetProcess.stderr.on('data', data => {
errors.push(data.toString())
})
dotNetProcess.on('close', code => {

@@ -28,3 +22,3 @@ if (code === 0) {

} else {
reject(new Error(errors.join('\n')))
reject(new Error(output.join()))
}

@@ -31,0 +25,0 @@ })

2

package.json
{
"name": "@matrix42/cli-cryptography",
"version": "0.1.0",
"version": "0.1.1",
"description": "Matrix42 Cryptography Commands for @matrix42/cli",

@@ -5,0 +5,0 @@ "author": "Matrix42 AG <info@matrix42.com>",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet