You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

makedeps

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

makedeps - npm Package Compare versions

Comparing version

to
0.1.4

6

cmd.js

@@ -10,7 +10,7 @@ #!/usr/bin/env node

// write header
console.log(process.argv[2] + ': \\');
console.log(process.argv[2].replace('$', '$$') + ': \\');
// read lines from stdin and write to stdout
// read lines from stdin and write to stdout, and make sure $'s are escaped
rl.on('line', function(line){
console.log(' ' + line + ' \\');
console.log(' ' + line.replace('$', '$$') + ' \\');
});

@@ -17,0 +17,0 @@

{
"name": "makedeps",
"version": "0.1.3",
"version": "0.1.4",
"description": "Emits Make-compatible dependency files from browserify --list",

@@ -5,0 +5,0 @@ "main": "cmd.js",