Skip to content

Commit 65495b1

Browse files
committed
Separate tasks into modules.
Deprecated “react” task removed, use “jsx” instead. Red-ify CoffeeScript, Stylus, and React error messages. Error in CoffeeScript, Stylus, and React will stop build.
1 parent 96e2014 commit 65495b1

25 files changed

+455
-374
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
index.js
2+
index.js
3+
tasks/*.js

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
test.js
33
*.coffee
4+
tasks/*.coffee

gulpfile.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ yargs = require 'yargs'
88
este = new GulpEste __dirname, true
99

1010
gulp.task 'coffee', ->
11-
gulp.src 'index.coffee'
11+
gulp.src ['index.coffee', 'tasks/**/*.coffee'], base: '.'
1212
.pipe coffee bare: true
1313
.on 'error', gutil.log
1414
.pipe gulp.dest '.'

0 commit comments

Comments
 (0)