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

@bitgenics/fab-upload-cli

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitgenics/fab-upload-cli - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

7

lib/types.d.ts

@@ -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

lib/utils/generateFab.d.ts

@@ -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": {

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