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

@liara/cli

Package Overview
Dependencies
Maintainers
1
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liara/cli - npm Package Compare versions

Comparing version 5.7.0-beta.4 to 5.7.0-beta.5

17

lib/commands/deploy.js

@@ -167,3 +167,3 @@ var _a;

if (error.message === 'TIMEOUT') {
this.error('Build timed out. It took about 10 minutes.');
this.error('Build timed out. It took about 20 minutes.');
}

@@ -284,2 +284,17 @@ if (error.response &&

async showBuildLogs(releaseID) {
while (true) {
try {
const { release } = await this.got(`v1/releases/${releaseID}`).json();
if (!release.queue) {
break;
}
this.spinner.start(`Waiting for the build, ${release.queue} people(s) ahead...`);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
catch (error) {
// tslint:disable-next-line: no-console
console.error(error.output.line);
throw new Error('Build failed.');
}
}
this.spinner.start('Building...');

@@ -286,0 +301,0 @@ let isCanceled = false;

@@ -5,2 +5,3 @@ export default interface IRelease {

failReason?: string;
queue?: number;
}

2

package.json
{
"name": "@liara/cli",
"description": "The command line interface for Liara",
"version": "5.7.0-beta.4",
"version": "5.7.0-beta.5",
"author": "Mhe <mhemrg120@gmail.com> (http://liara.ir/) @mhemrg",

@@ -6,0 +6,0 @@ "type": "module",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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