question about 'nuxt build'
[issue link]When run nuxt build in npm, it newer finished.
To work i changed in lines 79-85(bin/nuxt-build.js):
builder
.build()
.then(() => debug(‘Building done’))
.then(() => process.exit(0)) //FIXME: Exit
.catch(err => {
Utils.fatalError(err)
})
What right method to solve this problem?