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

artifact-engine

Package Overview
Dependencies
Maintainers
1
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 0.1.4 to 0.1.5

20

Engine/artifactEngine.js

@@ -34,7 +34,7 @@ "use strict";

}, (err) => {
ci.publishEvent('reliability', { issueType: 'error', errorMessage: err });
ci.publishEvent('reliability', { issueType: 'error', errorMessage: JSON.stringify(err, Object.getOwnPropertyNames(err)) });
reject(err);
});
}, (err) => {
ci.publishEvent('reliability', { issueType: 'error', errorMessage: err });
ci.publishEvent('reliability', { issueType: 'error', errorMessage: JSON.stringify(err, Object.getOwnPropertyNames(err)) });
reject(err);

@@ -115,12 +115,12 @@ });

exports.ArtifactEngine = ArtifactEngine;
process.on('unhandledRejection', (reason) => {
ci.publishEvent('reliability', { issueType: 'unhandledRejection', errorMessage: reason.message, stack: reason.stack });
logger_1.Logger.logError("artifact-engine: unhandled rejection " + reason);
throw reason;
process.on('unhandledRejection', (err) => {
ci.publishEvent('reliability', { issueType: 'unhandledRejection', errorMessage: JSON.stringify(err, Object.getOwnPropertyNames(err)) });
logger_1.Logger.logError("artifact-engine: unhandled rejection " + err);
throw err;
});
process.on('uncaughtException', (reason) => {
ci.publishEvent('reliability', { issueType: 'uncaughtException', errorMessage: reason.message, stack: reason.stack });
logger_1.Logger.logError("artifact-engine: unhandled exception " + reason);
throw reason;
process.on('uncaughtException', (err) => {
ci.publishEvent('reliability', { issueType: 'uncaughtException', errorMessage: JSON.stringify(err, Object.getOwnPropertyNames(err)) });
logger_1.Logger.logError("artifact-engine: unhandled exception " + err);
throw err;
});
//# sourceMappingURL=artifactEngine.js.map
{
"name": "artifact-engine",
"version": "0.1.4",
"version": "0.1.5",
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts",

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

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