blacklisted-plugins
v1.0.2
Published
Find out which plugins are in the gulp's blacklist
Downloads
9
Readme
blacklisted-plugins
Find out which plugins are in the gulp's blacklist.
What is blacklist?
Here is the answer quoted from the gulp's README.md
To maintain quality in the plugin ecosystem, we sometimes "blacklist" plugins. Being blacklisted means we won't offer support for issues concerning the module and we will not recommend that people use it. You are free to publish anything you want on NPM, but our official plugin list is subject to filtering.
A plugin may be blacklisted for the following reasons:
Does not fit within the gulp paradigm Flagrant duplicate of an existing plugin Does not follow the plugin guidelines
Installation
$ npm install blacklisted-plugins
or if you want to use it as a command, install it as global
$ npm install blacklisted-plugins -g
Usage
as a module:
const blp = require('blacklisted-plugins');
blp('/path/to/project', function(err, result) {
console.log(result);
// ==> e.g { 'gulp-rimraf': 'use the `del` module' }
});
in which, the result will be an object, it's key is the name of the 'blacklisted plugin', and the value is the reason why it was in the blacklist.
as CLI:
$ blp /path/to/proj
If you don't pass a path to it, blp will use
process.cwd()
instead.
License
MIT © Leigh Zhu