Comparing version 0.0.7 to 0.0.8
@@ -60,10 +60,10 @@ var fs = require('fs'), | ||
exports = module.exports = function(args) { | ||
if(args.length == 0) { | ||
argv = yargs.parse(args); | ||
if(argv._.length == 0) { | ||
console.error('Usage: d5 project {name} [opts ...]'); | ||
process.exit(1); | ||
} | ||
projectName = argv._[0]; | ||
projectName = args[0]; | ||
argv = yargs.parse(args.slice(1)); | ||
setupContext(); | ||
@@ -70,0 +70,0 @@ |
{ | ||
"name": "d5", | ||
"description": "small utilities for node development", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name" : "Daniel Kang", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11617