14 lines
328 B
JavaScript
Executable File
14 lines
328 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const config = require('../package');
|
|
const chalk = require('chalk');
|
|
|
|
console.log();
|
|
console.log(
|
|
chalk.green(
|
|
` 作者: ${config.git.auto}\n QQ: 2271608011@qq.com \n 邮箱: 2271608011@qq.com\n 微信: cxy-monkey\n Github: https://github.com/helpcode/`
|
|
)
|
|
);
|
|
console.log();
|
|
process.exit();
|