From c13133eb7c386336e7ae312055bff57a10687c7f Mon Sep 17 00:00:00 2001 From: Ryan Brodie Date: Sun, 9 Feb 2014 14:09:17 +0000 Subject: [PATCH] Incorrect require statement fix `--require coffee-script` fails despite [this post discussing such](https://github.com/gulpjs/gulp/issues/103) use. The solution is `gulp --require coffee-script/register`. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a449cc1..84f86e4 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ * Install [LiveReload plugin](https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei) for Google Chrome and enable it -* Run `gulp --require=gulp-coffee` to start Gulp.js build system. +* Run `gulp --require coffee-script/register` to start Gulp.js build system. * Open page from [http://localhost:3000](http://localhost:3000) in Chrome -* Try to modify html, scss and coffee files and see how the page gets updated with LiveReload \ No newline at end of file +* Try to modify html, scss and coffee files and see how the page gets updated with LiveReload