Whenever I run this example I get the below output:
$ gulp --require=gulp-coffee
[gulp] Requiring external module gulp-coffee
[gulp] No gulpfile found
So I tried specifying a gulpfile which results in an "unexpected character" error meaning it was expecting JS and not Coffeescript:
tion (exports, require, module, __filename, __dirname) { gulp = require 'gulp'
^^^^^^
SyntaxError: Unexpected string
Does this mean that you must manually compile gulpfile.coffee before running Gulp? Because you require gulp-coffee I assumed this wasn't the case.
Whenever I run this example I get the below output:
So I tried specifying a gulpfile which results in an "unexpected character" error meaning it was expecting JS and not Coffeescript:
tion (exports, require, module, __filename, __dirname) { gulp = require 'gulp' ^^^^^^ SyntaxError: Unexpected stringDoes this mean that you must manually compile
gulpfile.coffeebefore running Gulp? Because you requiregulp-coffeeI assumed this wasn't the case.