🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@sphinx-software/manifestor

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sphinx-software/manifestor - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+1
-1
package.json
{
"name": "@sphinx-software/manifestor",
"version": "0.0.2",
"version": "0.0.3",
"description": "Sphinx Manifestor",

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

@@ -7,5 +7,3 @@ const recursive = require('recursive-readdir');

async scan(directory, ignores = []) {
ignores.push(file => {
return !path.extname(file).match(/\.js$/);
});
ignores.push((file, stats) => stats.isFile() && !path.extname(file).match(/\.js$/);

@@ -12,0 +10,0 @@ return await recursive(directory, ignores);