🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

glub

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glub - npm Package Compare versions

Comparing version

to
1.0.3

bin/glub

8

package.json
{
"name": "glub",
"version": "1.0.0",
"version": "1.0.3",
"description": "glub up globs",

@@ -11,2 +11,5 @@ "main": "index.js",

},
"bin": {
"glub": "./bin/glub"
},
"keywords": [

@@ -24,4 +27,5 @@ "glob"

"dependencies": {
"glob": "^5.0.5"
"glob": "^5.0.5",
"minimist": "^1.1.1"
}
}

@@ -9,3 +9,3 @@ glub

Small wrapper around glob to allow mutiple args, useful for consuming mutiple command line args
Small wrapper around [`glob`](https://github.com/isaacs/node-glob) to allow mutiple args, useful for consuming mutiple command line args

@@ -15,8 +15,7 @@ ```js

// process.argv.slice(2) === ['node', 'index', '**/*.js', '!node_modules/**/*.js']
// process.argv === ['node', 'index', '**/*.js', '!node_modules/**/*.js']
var files = glub.sync(process.argv.slice(2));
glub(process.argv.slice(2), function(err, files) {
});

@@ -23,0 +22,0 @@ ```