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

artifact-engine

Package Overview
Dependencies
Maintainers
4
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

artifact-engine - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "artifact-engine",
"version": "1.0.0",
"version": "1.0.1",
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts",

@@ -5,0 +5,0 @@ "repository": {

@@ -30,2 +30,13 @@ "use strict";

this.webClient.get(itemUrl).then((res) => {
res.message.on('data', (chunk) => {
if (chunk) {
downloadSize += chunk.length;
}
});
res.message.on('end', () => {
this.artifactItemStore.updateDownloadSize(artifactItem, downloadSize);
});
res.message.on('error', (error) => {
reject(error);
});
resolve(res.message);

@@ -32,0 +43,0 @@ }, (reason) => {

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