1.1.6 • Published 8 years ago

cull-gulp v1.1.6

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

cull-gulp

Build Status npm version dependencies codecov

This package checks gulpplugins which is marked in blacklist.

screenshot

what for?

  • simplify your developmental environment.
  • save time to select gulpplugins when setting your project up.

install

for your project

$ npm install --save-dev cull-gulp

or in global

$ npm install -g cull-gulp

Usage Example

examine a specific local node project

$ cull-gulp --path=path/to/project/root

[information] 'gulp-foo' is not marked in the blacklist.
[information] 'gulp-bar' is not marked in the blacklist.
[information] 'gulp-baz' is not marked in the blacklist.
[ok] No gulpplugins marked in the blackList found.

without arguments

$ cull-gulp # refers current directory

examine a specific module name

$ cull-gulp --module=gulp-foo2

[warn] 'gulp-foo2' is marked in blacklist.
 ┗━[reason] duplicate of gulp-foo

options

--strict raises error. See $ cull-gulp --help for the others.

usage

with package.json

You can stop npm test if some plugins are marked as blacklist.

{
    scripts: {
        "pretest": "set -e; ./node_modules/.bin/cull-gulp --strict --quiet",
        "test": "# do test"
    }
}

inside .travis.yml

You can stop CI if some plugins are marked as blacklist

before_script:
  - "npm install -g cull-gulp"
script:
  - "set -e"
  - "cull-gulp --strict"
  - "npm test"
1.1.6

8 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago