mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
830 B
30 lines
830 B
#!/usr/bin/env node
|
|
const path = require('path')
|
|
const chalk = require('chalk')
|
|
const argv = require('minimist')(process.argv.slice(2))
|
|
|
|
console.log(chalk.cyan(`vitepress v${require('../package.json').version}`))
|
|
|
|
const command = argv._[0]
|
|
|
|
if (!command || command === 'dev') {
|
|
const port = argv.port || 3000
|
|
const root = command === 'dev' && argv._[1]
|
|
if (root) {
|
|
argv.root = root
|
|
}
|
|
require('../dist').createServer(argv).then(server => {
|
|
server.listen(port, () => {
|
|
console.log(`listening at http://localhost:${port}`)
|
|
})
|
|
}).catch(err => {
|
|
console.error(`failed to start server. error: `, err)
|
|
})
|
|
} else if (command === 'build') {
|
|
require('../dist').build(argv).catch(err => {
|
|
console.error(`build error: `, err)
|
|
})
|
|
} else {
|
|
console.log(chalk.red(`unknown command "${command}".`))
|
|
}
|