You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

buddy-cli

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.0 to 3.0.0

16

index.js

@@ -21,5 +21,7 @@ var find = require('./lib/find')

.version(version)
.usage('[options] <command> [path/to/package.json || path/to/buddy.js || path/to/buddy.json]')
.option('-t, --targets [types]', 'optional comma separated list of target(s) to build [js,css,html]')
.usage('[options] <command> [path-to-config]')
.option('-c, --compress', 'compress output for production deployment')
.option('-g, --grep <pattern>', 'only run build targets matching <pattern>')
.option('-i, --invert', 'inverts grep matches')
.option('-L, --lazy', 'convert js modules for lazy evaluation')
.option('-l, --lint', 'check output for syntax and logic errors')

@@ -29,3 +31,2 @@ .option('-r, --reload', 'reload all connected live-reload clients on file change during watch [ADD-ON buddy-server]')

.option('-S, --script', 'run script on build completion')
.option('-L, --lazy', 'convert js modules for lazy evaluation')
.option('-v, --verbose', 'print all messages for debugging');

@@ -78,15 +79,16 @@

compress: program.compress,
deploy: false,
grep: program.grep,
invert: program.invert,
lazy: program.lazy,
lint: program.lint,
reload: program.reload,
// Backwards compat
script: program.script || program.test,
lazy: program.lazy,
reload: program.reload,
serve: program.serve,
watch: false,
deploy: false,
verbose: program.verbose
};
if (program.targets) options.targets = program.targets.split(',');
return options;
}
{
"name": "buddy-cli",
"version": "2.1.0",
"version": "3.0.0",
"description": "The command-line bootstrapper for buddy",

@@ -5,0 +5,0 @@ "author": "popeindustries <alex@pope-industries.com>",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc