New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nx-extend/core

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-extend/core - npm Package Compare versions

Comparing version

to
1.0.0

2

package.json
{
"name": "@nx-extend/core",
"version": "0.6.0",
"version": "1.0.0",
"main": "src/index.js",

@@ -5,0 +5,0 @@ "typings": "src/index.d.ts",

@@ -9,2 +9,5 @@ import { ShellString, ExecOptions } from 'shelljs';

export declare type Result<Output> = Output extends string ? string : Output;
export declare const execCommand: <Output>(command: any, options?: Options) => Output;
export declare const execCommand: <Output = {
success: boolean;
output: string;
}>(command: any, options?: Options) => Output;

@@ -8,3 +8,3 @@ "use strict";

const execCommand = (command, options = {
asString: true,
asString: false,
asJSON: false

@@ -23,5 +23,8 @@ }) => {

// @ts-ignore
return result;
return {
success: result['code'] === 0,
output: result.stdout
};
};
exports.execCommand = execCommand;
//# sourceMappingURL=exec.js.map

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet