1. gulp-check-deps
Gulp plugin to check your dependencies (through npm outdated)
gulp-check-deps
Package: gulp-check-deps
Created by: pmsipilot
Last modified: Sat, 18 Jun 2022 16:44:48 GMT
Version: 1.4.1
License: MIT
Downloads: 192
Repository: https://github.com/pmsipilot/gulp-check-deps

Install

npm install gulp-check-deps
yarn add gulp-check-deps

check-deps Build Status

Check your node dependencies (through npm outdated)

In case you are looking for the cli binary, you should take a look to check-deps since this library has been split for npm

check-deps

How to use ?

 //gulpfile.js

var checkDeps = require('gulp-check-deps');

gulp.task('check:deps', function() {
    return gulp.src('package.json').pipe(checkDeps());
});

Here is how you would do to use a custom NPM registry and make the task fail if it finds any git dependency:

 //gulpfile.js

var checkDeps = require('gulp-check-deps');

gulp.task('check:deps', function() {
    var checkDepsConfig = {
        npmArgs: ['--registry', 'http://private-npm.local'],
        failForGitDependencies: true
    };

    return gulp.src('package.json').pipe(checkDeps(checkDepsConfig));
});

License

The MIT License (MIT)

Copyright (c) 2015 PMSIpilot

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin