Comparing version 0.1.2 to 0.1.3
@@ -131,5 +131,2 @@ #!/usr/bin/env node | ||
module.exports = initCreate; | ||
module.exports = create; | ||
module.exports = build; | ||
module.exports = deploy; | ||
module.exports = [initCreate,create,build, deploy] |
@@ -18,3 +18,3 @@ #!/usr/bin/env node | ||
case "init": | ||
spawn(initCreate(program.args[1]), { | ||
spawn(build.initCreate(program.args[1]), { | ||
shell: true, | ||
@@ -26,3 +26,3 @@ stdio: 'inherit' | ||
if (program.args.length == 2) { | ||
spawn(create(program.args[1]), { | ||
spawn(build.create(program.args[1]), { | ||
shell: true, | ||
@@ -37,3 +37,3 @@ stdio: 'inherit' | ||
if (program.args.length == 2) { | ||
spawn(create(program.args[1]), { | ||
spawn(build.create(program.args[1]), { | ||
shell: true, | ||
@@ -47,3 +47,3 @@ stdio: 'inherit' | ||
case "build": | ||
spawn(build(), { | ||
spawn(build.build(), { | ||
shell: true, | ||
@@ -54,7 +54,7 @@ stdio: 'inherit' | ||
case "deploy": | ||
spawn(build(), { | ||
spawn(build.build(), { | ||
shell: true, | ||
stdio: 'inherit' | ||
}); | ||
spawn(deploy(), { | ||
spawn(build.deploy(), { | ||
shell: true, | ||
@@ -61,0 +61,0 @@ stdio: 'inherit' |
{ | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"main": "index.js", | ||
@@ -4,0 +4,0 @@ "bin": "bin/cli.js", |
23702
454