UNPKG
angular-file-drop
Version:
latest (1.2.4)
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
github.com/nordikafiles/angular-file-drop
nordikafiles/angular-file-drop
angular-file-drop
/
gulpfile.coffee
10 lines
(8 loc)
•
214 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
gulp =
require
'gulp'
coffee =
require
'gulp-coffee'
gulp.task
'default'
, -> gulp.src
'./src/**/*.coffee'
.pipe
do
coffee .pipe gulp.dest
'./'
gulp.task
'watch'
, -> gulp.watch
'./src/**/*.coffee'
, [
'default'
]