Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

undertaker-forward-reference

gulpjs65.7kMIT2.0.0

Undertaker custom registry supporting forward referenced tasks.

forward reference, custom registry, registry, tasks, undertaker, gulp

readme

undertaker-forward-reference

NPM version Downloads Build Status Coveralls Status

Undertaker custom registry supporting forward referenced tasks.

Why?

The focus of gulp 4.0 is to make the 90% use case extremely easy, but we don't want to completely unsupport the 10% use cases. We have noticed patterns people use and things they want to do (and have worked around), like serial execution. However, I believe forward referenced tasks (as defined in https://github.com/gulpjs/gulp/issues/802) are an edge case that is better handled with other patterns (coming soon: links to better patterns). If you must use forward referenced tasks, you can set this as a custom registry before registering any tasks.

Usage

var gulp = require('gulp');
var FwdRef = require('undertaker-forward-reference');

gulp.registry(FwdRef()); // or gulp.registry(new FwdRef());

gulp.task('default', gulp.series('forward-ref'));

gulp.task('forward-ref', function (cb) {
  // do task things
  cb();
});

API

ForwardReferenceRegistry()

Constructor for the registry. Pass an instance of this registry to gulp.registry.

License

MIT

changelog

Changelog

2.0.0 (2022-06-28)

⚠ BREAKING CHANGES

  • Normalize repository, dropping node <10.13 support (#8)

Miscellaneous Chores

  • Normalize repository, dropping node <10.13 support (#8) (efad451)