diff --git a/brunch-config.js b/brunch-config.js index 720a999..ccb8689 100644 --- a/brunch-config.js +++ b/brunch-config.js @@ -58,10 +58,10 @@ exports.config = { handlebars: { enableProcessor: true, helpers: { - join (context, block) { + join(context, block) { return context.join(block.hash.delimiter) }, - updated_time () { + updated_time() { return new Date().toISOString() } } diff --git a/gulpfile.js b/gulpfile.js index 60ce823..f2f1f08 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -119,7 +119,8 @@ gulp.task('deploy', (done) => { message: `Deploy ${gitRevSync.short()} from v${pkg.version} [ci skip]`, repo: process.env.DEPLOY_REPO || `git@github.com:${pkg.repository}.git`, branch: process.env.DEPLOY_BRANCH || 'gh-pages', - logger: (message) => { console.log(`[ deploy ] ${message}`) }, + logger: (message) => { + console.log(`[ deploy ] ${message}`)}, user: { name: process.env.DEPLOY_NAME || pkg.author.name, email: process.env.DEPLOY_EMAIL || pkg.author.email