https://github.com/angular/angular
Raw File
Tip revision: ec3987ede6d3adc3858b46b524ff4cb1b89aabf5 authored by Andrew Scott on 11 January 2021, 17:25:48 UTC
release: cut the v11.0.8 release (#40391)
Tip revision: ec3987e
check-node-modules
#!/usr/bin/env node

var checkNpm = require('./check-node-modules.js');

var purgeIfStale = (process.argv.indexOf('--purge') !== -1);

// check-node-modules will exit(1) if we don't need to install to short-circuit `npm install`
// see .travis.yml's `install` block to see the reason for this
var nodeModulesOK = checkNpm(true, purgeIfStale);

process.exit( nodeModulesOK ? 0 : 1);

back to top