@nx-extend/core
Advanced tools
Comparing version
{ | ||
"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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
3942
5.18%60
11.11%1
-50%