1.0.1 • Published 6 years ago

broccoli-null v1.0.1

Weekly downloads
437
License
MIT
Repository
github
Last release
6 years ago

broccoli-null Build Status

Sometimes (but rarely), one wants to return a broccoli tree which does nothing. Rather then relying on private API, this plugins achieves this with public API.

It also ensures all NULL trees are the same;

yarn add broccoli-null
const Null = require('broccoli-null');
const funnel = require('broccoli-funnel');
const merge = require('broccoli-merge-trees');

merge([
  funnel(__dirname + '/some/folder'),
  Null.NULL,
  new Null()
]);
Null.NULL === new Null() // => true