14 lines
271 B
JavaScript
Executable File
14 lines
271 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项目地址:${config.git.url} \n分支:${config.git.branch}`
|
|
)
|
|
)
|
|
console.log()
|
|
process.exit()
|