Socket
Socket
Sign inDemoInstall

conco

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conco - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json
{
"description": "test runner for conco.co",
"name": "conco",
"version": "0.1.2",
"version": "0.1.3",
"bin": {

@@ -6,0 +6,0 @@ "conco": "./src/bin/conco"

@@ -13,8 +13,14 @@ "use strict";

const executable = require(path.resolve(process.cwd(), file.path));
const tagsArray = tags.split(',');
let r = true;
if (executable.tags && _.isArray(executable.tags)) {
return _.union(tags, executable.tags).length === executable.tags.length;
_.forEach(tagsArray, (tag) => {
if (executable.tags.indexOf(tag) === -1) {
r = false;
}
})
}
// TODO
return false;
return r;
});
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