This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community. Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it. https://www.freifunk-altdorf.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.4 KiB

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var path = require('path');
var semver = require('semver');
var spawn = require('cross-spawn');
var through = require('through2');
var PluginError = require('plugin-error');
var colors = require('ansi-colors');
var fancyLog = require('fancy-log');
var PLUGIN_NAME = 'check-dependencies';
module.exports = function(opts) {
function read(file, enc, cb) {
var cwd = path.dirname(file.path);
var pkgData = JSON.parse(file.contents.toString());
var outdated = spawn(
'npm',
['outdated', '--json', '--long'],
{ cwd: cwd }
);
var data = '';
outdated.stdout.on('data', function(chunk) {
data += chunk.toString();
});
outdated.on('exit', function(code) {
// npm outdated now exits with non-zero when there are outdated deps, so
// we'll handle that gracefully across npm versions and just assume that
// things are fine unless we can't parse stdout as JSON.
try {
var outdatedData = JSON.parse(data);
} catch (e) {
cb(new PluginError(PLUGIN_NAME, 'npm broke'));
}
var failures = [];
Object.keys(outdatedData).forEach(function(name) {
var current = outdatedData[name].current;
var type = outdatedData[name].type;
var requested = pkgData[type][name];
if (!requested) {
fancyLog('Found extraneous outdated dependency. Consider running `npm prune`');
return;
}
if (!requested.startsWith('file:') && !semver.satisfies(current, requested)) {
// Definitely wrong, so we should error
failures.push({name, current, requested});
}
});
if (failures.length) {
failures.forEach((failure) => {
fancyLog(
`${colors.bold(failure.name)} is outdated ` +
`(${colors.red(failure.current)} does not satisfy ` +
`${colors.yellow(failure.requested)})`
);
});
var msg =
'Some of your dependencies are outdated. Please run ' +
`${colors.bold('npm update')} to ensure you are up to date.`;
cb(new PluginError(PLUGIN_NAME, msg));
return;
}
cb();
});
}
return through.obj(read);
};