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.
$ npm install --save-dev gulp-license-check
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
}));
});
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.
MIT © Mario Romano