I have a node script and I want to run a gulp task I have in the same script, how can I call it?
#!/usr/bin/env node var gulp = require(\'gulp\'); gulp.task(\'de
Eventually I found the way:
gulp.start('default');