1.2.1 • Published 7 years ago

gulp-license-check v1.2.1

Weekly downloads
856
License
MIT
Repository
github
Last release
7 years ago

gulp-license-check

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

1.2.1

7 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago