Skip to content Skip to sidebar Skip to footer

Can I Run A Gulp Task Written In Es6 Using Node?

I'm using ES6 on Node through Babel. I can run ES6 scripts using a run-babel script. So, this will work: node run-babel build.js //build.js is written in ES6 But now I'd like to a

Solution 1:

You can first go into node_modules/gulp/bin/gulp.js and edit the first line to become #!/usr/bin/env node --harmony. This will invoke gulp in node harmony mode.

Then you can run node_modules/gulp/bin/gulp.js build directly instead of gulp build.

You can make an alias if you like :)

Post a Comment for "Can I Run A Gulp Task Written In Es6 Using Node?"