1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

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
This commit is contained in:
Dan Zajdband 2016-10-16 21:04:35 -04:00 committed by Guillermo Rauch
parent 2d06eb5958
commit d9b1828c79

View file

@ -1,9 +1,9 @@
#!/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)