Skip to content

Instantly share code, notes, and snippets.

@Xvezda
Created October 10, 2020 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xvezda/c020dcfc340b0f283ea417f5e31f80da to your computer and use it in GitHub Desktop.
Save Xvezda/c020dcfc340b0f283ea417f5e31f80da to your computer and use it in GitHub Desktop.
See what gulp src method pushing
const { src, dest } = require('gulp');
exports.default = function(cb) {
src('src/*').on('data', function(chunk) {
console.log(chunk);
});
cb();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment