Blame view

gulp/watch.js 287 Bytes
66ee5529f   Palak Handa   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  'use strict';
  
  var gulp = require('gulp');
  
  var paths = gulp.paths;
  
  gulp.task('watch', ['inject'], function () {
    gulp.watch([
      paths.src + '/*.html',
      paths.src + '/{app,components}/**/*.scss',
      paths.src + '/{app,components}/**/*.js',
      'bower.json'
    ], ['inject']);
  });