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.21 to 0.1.22

18

Engine/artifactEngine.js

@@ -74,3 +74,17 @@ "use strict";

if (item.itemType === models.ItemType.File) {
if (tl.match([item.path], this.patternList).length > 0) {
var pathToMatch = item.path.replace(/\\/g, '/');
var matchOptions = {
debug: false,
nobrace: true,
noglobstar: false,
dot: true,
noext: false,
nocase: false,
nonull: false,
matchBase: false,
nocomment: false,
nonegate: false,
flipNegate: false
};
if (tl.match([pathToMatch], this.patternList, null, matchOptions).length > 0) {
logger_1.Logger.logInfo("Processing " + item.path);

@@ -91,3 +105,3 @@ sourceProvider.getArtifactItem(item).then((contentStream) => {

else {
logger_1.Logger.logMessage(tl.loc("SkippingItem", item.path));
logger_1.Logger.logMessage(tl.loc("SkippingItem", pathToMatch));
this.artifactItemStore.updateState(item, models.TicketState.Skipped);

@@ -94,0 +108,0 @@ resolve();

2

package.json
{
"name": "artifact-engine",
"version": "0.1.21",
"version": "0.1.22",
"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