Skip to content

Commit 79cf0dd

Browse files
committed
style(gulp): Reformat section comments
1 parent 443af83 commit 79cf0dd

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

app/templates/gulpfile.babel.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ var paths = {
5656
dist: 'dist'
5757
};
5858

59-
//////////////////////
60-
// Helper functions //
61-
//////////////////////
59+
/********************
60+
* Helper functions
61+
********************/
6262

6363
function onServerLog(log) {
6464
console.log(plugins.util.colors.white('[') + plugins.util.colors.yellow('nodemon') + plugins.util.colors.white('] ') + log.message);
@@ -89,9 +89,9 @@ function whenServerReady(cb) {
8989
100);
9090
}
9191

92-
////////////////////////
93-
// Reusable pipelines //
94-
////////////////////////
92+
/********************
93+
* Reusable pipelines
94+
********************/
9595

9696
var lintClientScripts = lazypipe()<% if(filters.coffee) { %>
9797
.pipe(plugins.coffeelint)
@@ -117,9 +117,9 @@ let styles = lazypipe()
117117
// .pipe(plugins.autoprefixer, {browsers: ['last 1 version']}) //seems to break this
118118
.pipe(gulp.dest, '.tmp');
119119

120-
///////////
121-
// Tasks //
122-
///////////
120+
/********************
121+
* Tasks
122+
********************/
123123

124124
gulp.task('inject', cb => {
125125
runSequence(['inject:js', 'inject:css'], cb);
@@ -239,9 +239,9 @@ gulp.task('bower', () => {
239239
.pipe(gulp.dest('client/'));
240240
});
241241

242-
///////////
243-
// Build //
244-
///////////
242+
/********************
243+
* Build
244+
********************/
245245

246246
gulp.task('build', (callback) => {
247247
runSequence('clean:dist',

0 commit comments

Comments
 (0)