You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 28, 2023. It is now read-only.
I pulled the current image (6501338b5a4a) from docker hub, followed the instructions but could not get it to work.
I kept getting 'Task is not in your Gulpfile', so it seem even though the gulpfile.js is required, the tasks are not loaded.
My workaround was to change the import order: var glp = require(projectPath + '/gulpfile'); gulp.tasks = glp.tasks; requireDir('./tasks', {recurse: true});
And added a module export to the end of my gulpfile module.exports = gulp;