Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Format gulpfile and brunch config to standard
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Aug 5, 2016
1 parent 6d87565 commit a06d235
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions brunch-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ gulp.task('deploy', (done) => {
message: `Deploy ${gitRevSync.short()} from v${pkg.version} [ci skip]`,
repo: process.env.DEPLOY_REPO || `[email protected]:${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
Expand Down

0 comments on commit a06d235

Please sign in to comment.