mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-30 15:22:39 +00:00
Revert "don't warn if pages directory not exists"
This reverts commit c6556c6b8b
.
This commit is contained in:
parent
054df82200
commit
8f08f13941
@ -97,6 +97,15 @@ export function options () {
|
||||
}
|
||||
|
||||
export async function build () {
|
||||
// Check if pages dir exists and warn if not
|
||||
if (!fs.existsSync(join(this.srcDir, 'pages'))) {
|
||||
if (fs.existsSync(join(this.srcDir, '..', 'pages'))) {
|
||||
console.error('> No `pages` directory found. Did you mean to run `nuxt` in the parent (`../`) directory?') // eslint-disable-line no-console
|
||||
} else {
|
||||
console.error('> Couldn\'t find a `pages` directory. Please create one under the project root') // eslint-disable-line no-console
|
||||
}
|
||||
process.exit(1)
|
||||
}
|
||||
debug(`App root: ${this.srcDir}`)
|
||||
debug('Generating .nuxt/ files...')
|
||||
// Create .nuxt/, .nuxt/components and .nuxt/dist folders
|
||||
|
Loading…
Reference in New Issue
Block a user