Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 681 Bytes

File metadata and controls

34 lines (24 loc) · 681 Bytes

docs - API - CLI - REPL - logging - arguments

REPL

var gulp = require('gulp-runtime').create({ repl: true });

When an instance passes repl: true the process running does not exit when all tasks are done. For this case, REPL listening on stdin.

$ node gulpfile.js

press enter and you will see a prompt > that will run the tasks defined in the gulpfile

>
> build less compress png

For more information about how tasks are run see gulp-repl.


Back to top ↑