-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
48 lines (38 loc) · 995 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
var publish = require('./lib/publish')
var info = require('./lib/info')
var install = require('./lib/info')
var log = require('./lib/log');
// can put a package in s3
// can install a package from s3
module.exports = function(config){
//log('info','config',config);
var cmd = config._[0];
var cmds = {
publish:function(config){
publish(config,function(err,data){
if(err) return log('error',err);
log('success',data);
});
},
info:function(config){
info(config,config._[1],function(err,data){
if(err) return log('error',err);
log('success',data);
});
},
install:function(config){
install(config,config._[1],function(err,data){
if(err) return log('error',err);
log('success',data);
});
}
};
// should support @version
cmds.view = cmds.info;
if(cmds[cmd]) {
cmds[cmd](config);
} else {
log('error','unknown command ',cmd);
process.exit(1);
}
}