@bitgenics/fab-upload-cli
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -12,5 +12,10 @@ import { BuildStatus } from "./enums"; | ||
}; | ||
declare type BuildLogType = { | ||
cmd: string; | ||
log: string; | ||
}; | ||
export declare type BuildInfo = { | ||
status: BuildStatus; | ||
log: string; | ||
logs: Array<BuildLogType>; | ||
}; | ||
export {}; |
@@ -5,4 +5,7 @@ declare const generateFab: () => Promise<{ | ||
status: any; | ||
log: any; | ||
logs: { | ||
cmd: string; | ||
log: any; | ||
}[]; | ||
}>; | ||
export default generateFab; |
@@ -14,3 +14,8 @@ "use strict"; | ||
status: BuildStatus.SUCCESS, | ||
log: stdout, | ||
logs: [ | ||
{ | ||
cmd: "npm run build:fab", | ||
log: stdout | ||
} | ||
] | ||
}; | ||
@@ -24,3 +29,8 @@ } | ||
status: BuildStatus.FAILED, | ||
log: `${stdout}${stderr}`, | ||
logs: [ | ||
{ | ||
cmd: "npm run build:fab", | ||
log: stdout + stderr | ||
} | ||
] | ||
}; | ||
@@ -27,0 +37,0 @@ } |
{ | ||
"name": "@bitgenics/fab-upload-cli", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"author": "Tom Trinca @plexey", | ||
@@ -5,0 +5,0 @@ "bin": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18057
424