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
I have replaced https://www.npmjs.com/package/gulp-clean with https://www.npmjs.com/package/del as i got warning after install. Cf. recommandation here http://stackoverflow.com/questions/24396659/how-to-clean-a-project-correctly-with-gulp In gulpfile.js (L31) : gulp.task('del', function(cb) { del(['./dist'], cb); });
gulp.task('del', function(cb) { del(['./dist'], cb); });
The text was updated successfully, but these errors were encountered:
Should no longer be an issue in 3.X.
Sorry, something went wrong.
No branches or pull requests
I have replaced https://www.npmjs.com/package/gulp-clean with https://www.npmjs.com/package/del as i got warning after install. Cf. recommandation here http://stackoverflow.com/questions/24396659/how-to-clean-a-project-correctly-with-gulp
In gulpfile.js (L31) :
gulp.task('del', function(cb) {
del(['./dist'], cb);
});
The text was updated successfully, but these errors were encountered: