summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-20 22:02:44 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-20 22:02:44 +0100
commit4a6393cf13d60004c9b9b2a9f86f7e1e5253c19a (patch)
tree9e3dddcedb78c21481f12b489a244fbcd7be5326 /gulpfile.js
parent67d407ba6ec7ac69b72030f9a909a8039da1dafb (diff)
execute gulp
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 8988571b..47b5191c 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,6 +1,5 @@
var gulp = require('gulp'),
concat = require('gulp-concat'),
- notify = require('gulp-notify'),
jshint = require('gulp-jshint');
gulp.task('js', function() {
@@ -14,8 +13,7 @@ gulp.task('js', function() {
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default'))
.pipe(concat('script.js'))
- .pipe(gulp.dest('js/public'))
- .pipe(notify({message: 'Scripts task complete'}));
+ .pipe(gulp.dest('js/public'));
});
gulp.task('css', function() {
@@ -24,8 +22,7 @@ gulp.task('css', function() {
'!css/public/**.css'
])
.pipe(concat('style.css'))
- .pipe(gulp.dest('css/public'))
- .pipe(notify({message: 'Styles task complete'}));
+ .pipe(gulp.dest('css/public'));
});
gulp.task('watch', function() {