UNPKG
cybertron-utils
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
cybertron components manage
github.com/iamtang/cybertron
iamtang/cybertron
cybertron-utils
/
bin
/
cbt.js
11 lines
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node
const
checkUpdate =
require
(
'../utils/update-check'
); (
async
() => {
await
checkUpdate
();
require
(
'yargs'
) .
commandDir
(
'../cmds'
) .
alias
(
'h'
,
'help'
) .
alias
(
'v'
,
'version'
) .
help
() .
argv
})()