Comparing version 0.0.1 to 0.0.11
@@ -0,3 +1,5 @@ | ||
#!/usr/bin/env node | ||
require('../index'); | ||
require('../index'); | ||
// ================>>>>>>>>> this is the gloabl execution file do not delete |
@@ -5,3 +5,4 @@ | ||
init:require('./init/index'), | ||
serve:require('./init/index'), | ||
serve:require('./serve/index'), | ||
keys:require('./keys/index'), | ||
} |
@@ -5,6 +5,9 @@ | ||
init:()=>{ | ||
init:(name,location)=>{ | ||
console.log(name); | ||
console.log(location); | ||
} | ||
}; |
@@ -11,3 +11,3 @@ const engine = require('./engine/index'); | ||
const bank = ['init','serve']; | ||
const bank = ['init','serve','keys']; | ||
const work = process.argv; | ||
@@ -24,2 +24,5 @@ const location = work[1]; | ||
} | ||
if(func == 'keys'){ | ||
return engine.keys.init(work[3],work[4]); | ||
} | ||
if(func == 'founder'){ | ||
@@ -36,2 +39,3 @@ common.success('Akku - Tejasav Dutt, you can found me at gzbakku@gmail.com'); | ||
common.tag('- serve'); | ||
common.tag('- keys'); | ||
common.tag('- founder'); | ||
@@ -38,0 +42,0 @@ return; |
{ | ||
"name": "hozz", | ||
"version": "0.0.1", | ||
"version": "0.0.11", | ||
"description": "its a project structure for wett api framework.", | ||
@@ -14,2 +14,3 @@ "main": "index.js", | ||
"cross-spawn": "^7.0.3", | ||
"crypto": "^1.0.1", | ||
"fs-extra": "^9.0.1" | ||
@@ -16,0 +17,0 @@ }, |
8649
16
300
4
+ Addedcrypto@^1.0.1
+ Addedcrypto@1.0.1(transitive)