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 has been 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;
This worked.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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;
This worked.
The text was updated successfully, but these errors were encountered: