gulp-license-check

1.2.1 • Public • Published

gulp-license-check

travis Status Coverage Status npm downloads license unicorn my blog my portfolio

gulp-license-check is a Gulp extension to check the presence of a specific header in all the files of a project, and give to you a log of all the files where the header is missing. Never miss again a license header in a file.

If you want to run this plugin from npm without using gulp you can use license-check.

Install

$ npm install --save-dev gulp-license-check

Usage

const license = require('gulp-license-check');
 
gulp.task('license', function () {
    return gulp.src('./app/**/*.ts')
        .pipe(license({
            path: 'app/license_header.txt',
            blocking: false,
            logInfo: false,
            logError: true
        }));
});

Options

path: {string} . Path of your header file, this is the header that has to match in all the files of the project.
blocking: {boolean} default true. If it's true, in case of missing header will block the build.
logInfo: {boolean} default true. If it's false the plugin doesn't show the info log.
logError: {boolean} default true. If it's false the plugin doesn't show the error log.

License

MIT © Mario Romano

Readme

Keywords

Package Sidebar

Install

npm i gulp-license-check

Weekly Downloads

293

Version

1.2.1

License

MIT

Last publish

Collaborators

  • magemello