commit
This commit is contained in:
parent
a70448a434
commit
a15c733e45
55 changed files with 13236 additions and 1 deletions
16
node_modules/fotology-x/gulpfile.js
generated
vendored
Normal file
16
node_modules/fotology-x/gulpfile.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
var gulp = require('gulp');
|
||||
var coffee = require('gulp-coffee');
|
||||
|
||||
gulp.task("default", ["coffee"], function(){
|
||||
// let other tasks do the work
|
||||
});
|
||||
|
||||
gulp.task("coffee", function(){
|
||||
return gulp.src("source/*.coffee")
|
||||
.pipe(coffee())
|
||||
.pipe(gulp.dest("compiled"));
|
||||
})
|
||||
|
||||
gulp.task("watch", ["default"], function() {
|
||||
gulp.watch("source/*coffee", ["coffee"])
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue