The package gulp-help gives the following example for requiring it:
// gulpfile.js
var gulp = require('gulp-help')(require('gulp'));
The rest of my project is using the import
keyword. Thus I would like to rewrite this to import as well.
Is this possible when the module exports like module.exports = function (gulp, options) { ..
?