UNPKG
ng-packery
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
AngularJS Directive for Packery Layout
github.com/lucaslim/angular-packery/
lucaslim/angular-packery
ng-packery
/
gulp
/
tasks
/
watch.js
9 lines
(7 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
import
config
from
'../config'
;
import
gulp
from
'gulp'
; gulp.
task
(
'watch'
, [
'browserSync'
],
function
(
) { gulp.
watch
(config.
scripts
.
src
, [
'lint'
,
'browserify'
]); gulp.
watch
(config.
views
.
watch
, [
'views'
]); });