mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
ESLint
This commit is contained in:
parent
40a167258b
commit
ef6f0da146
@ -72,7 +72,7 @@ export default async function () {
|
||||
// Resolve config.generate.routes promises before generating the routes
|
||||
try {
|
||||
var generateRoutes = await promisifyRoute(this.options.generate.routes || [])
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
console.error('Could not resolve routes') // eslint-disable-line no-console
|
||||
console.error(e) // eslint-disable-line no-console
|
||||
process.exit(1)
|
||||
@ -87,8 +87,7 @@ export default async function () {
|
||||
}
|
||||
})
|
||||
let n = 0
|
||||
for(let route of this.routes) {
|
||||
|
||||
for (let route of this.routes) {
|
||||
await waitFor(n++ * self.options.generate.interval)
|
||||
try {
|
||||
var { html, error } = await self.renderRoute(route, { _generate: true })
|
||||
@ -117,7 +116,6 @@ export default async function () {
|
||||
// https://help.github.com/articles/files-that-start-with-an-underscore-are-missing/
|
||||
const nojekyllPath = resolve(distPath, '.nojekyll')
|
||||
writeFile(nojekyllPath, '')
|
||||
|
||||
const duration = Math.round((Date.now() - s) / 100) / 10
|
||||
debug(`HTML Files generated in ${duration}s`)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user