We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Above error occurs everytime I want to use my Panini task. For the record, I installed it in my own Gulpy workflow.
I've tried changing the paths etc. but nothing worked.
Here's the task code:
function panini(){ return gulp.src('src/pages/**/*.html') .pipe(panini({ root: 'src/pages/', layouts: 'src/layouts/', partials: 'src/partials/', helpers: 'src/helpers/', data: 'src/data/' })) .pipe(gulp.dest('build')); }
My folder structure is the following:
src/ data/ helpers/ layouts/ - default.html pages/ - index.html partials/ img/ js/ scss/
The text was updated successfully, but these errors were encountered:
any luck? I'm getting the same error now that I moved to gulp v4
Sorry, something went wrong.
this is a problem because of your gulp version. gulp changed its syntax quite a bit.
either you change your gulpfile accordingly or you downgrade back to gulp v3. https://www.sitepoint.com/how-to-migrate-to-gulp-4/
i still use gulp 3. just use gulp@^3.0.0 to install the latest version of gulp v3.
gulp@^3.0.0
No branches or pull requests
Above error occurs everytime I want to use my Panini task.
For the record, I installed it in my own Gulpy workflow.
I've tried changing the paths etc. but nothing worked.
Here's the task code:
My folder structure is the following:
The text was updated successfully, but these errors were encountered: