UNPKG
@sun-fe-cli/sun
Version:
latest (0.0.11)
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.4
core of the sun-fe-cli
@sun-fe-cli/sun
/
bin
/
sun.js
11 lines
(8 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node
const
importLocal =
require
(
'import-local'
);
const
log =
require
(
'@sun-fe-cli/log'
);
if
(
importLocal
(__filename)) { log.
info
(
'cli'
,
'优先使用本地的sun-fe-cli命令'
); }
else
{
require
(
'../lib'
)(process.
argv
.
slice
(
2
)); }