Skip to content

Instantly share code, notes, and snippets.

@Xvezda
Created October 10, 2020 04:18
Show Gist options
  • Select an option

  • Save Xvezda/c020dcfc340b0f283ea417f5e31f80da to your computer and use it in GitHub Desktop.

Select an option

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