提交 d9b1828c 编写于 作者: D Dan Zajdband 提交者: Guillermo Rauch

Added warning when pages dir is not present (#14)

* Added warning when pages dir is not present and a special one if it exists as a sibling of the project root

* Added requested copy changes
上级 2d06eb59
#!/usr/bin/env node
import { resolve } from 'path'
import { resolve, join } from 'path'
import parseArgs from 'minimist'
import Server from '../server'
import build from '../server/build'
import { exists } from 'mz/fs'
const argv = parseArgs(process.argv.slice(2), {
alias: {
......@@ -23,6 +23,15 @@ build(dir)
const srv = new Server({ dir, dev: true })
await srv.start(argv.port)
console.log('> Ready on http://localhost:%d', argv.port)
// Check if pages dir exists and warn if not
if (!await exists(join(dir, 'pages'))) {
if (await exists(join(dir, '..', 'pages'))) {
console.warn('> No `pages` directory found. Did you mean to run `next` in the parent (`../`) directory?')
} else {
console.warn('> Couldn\'t find a `pages` directory. Please create one under the project root')
}
}
})
.catch((err) => {
console.error(err)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册