This commit is contained in:
Pooya Parsa 2017-05-11 18:29:36 +04:30 committed by GitHub
parent 40a167258b
commit ef6f0da146

View File

@ -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`)