UNPKG
escuela-init
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Generador de CI para los proyectos
escuela-init
/
bin
/
global.js
14 lines
(11 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env node
const
args = process.
argv
.
splice
(process.
execArgv
.
length
+
2
);
const
command = args[
0
];
const
option =
require
(
'../lib/index'
);
switch
(command) {
case
'init'
: option.
init
();
break
;
default
:
break
; }