1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-15 10:46:32 +00:00

standardize code

This commit is contained in:
Rokt33r
2015-06-10 03:14:44 +09:00
parent 58729b4d56
commit 29430b540b
15 changed files with 146 additions and 146 deletions

View File

@@ -31,7 +31,7 @@ gulp.task('env', function () {
.pipe(gulp.dest('build/config'))
})
gulp.task('js', function (){
gulp.task('js', function () {
return gulp.src(['src/**/*.js'])
.pipe(changed('build'))
.pipe(gulp.dest('build'))
@@ -43,14 +43,14 @@ gulp.task('styl', function () {
.pipe(styl())
.pipe(autoprefixer())
.pipe(gulp.dest('build'))
.pipe(notify("Stylus!!"))
.pipe(notify('Stylus!!'))
.pipe(livereload())
})
gulp.task('tpls', function(){
gulp.task('tpls', function () {
return gulp.src('src/**/*.tpl.html')
.pipe(templateCache())
.pipe(notify("Tpls Done!! :)"))
.pipe(notify('Tpls Done!! :)'))
.pipe(gulp.dest('build'))
})