Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

geddy-genutils

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geddy-genutils - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

8

lib/jake.js

@@ -26,5 +26,11 @@ var jake = require('jake')

{
// removes flags from the arguments
function filterFlags(arg)
{
return arg.substr(0, 1) !== '-';
}
// keep support of old style gen syntax
if (args.length > 0 && validTasks.indexOf(args[0]) === -1) {
args = ['default[' + args.join(',') + ']'];
args = ['default[' + args.filter(filterFlags).join(',') + ']'];
}

@@ -31,0 +37,0 @@ else if (args.length == 0) {

2

package.json
{
"name": "geddy-genutils",
"version": "0.0.10",
"version": "0.0.11",
"description": "General purpose utilities for geddy generators.",

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

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