1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 20:30:04 +02:00
Files
minifyfromhtml/node_modules/latest/tests/test.js
2022-08-20 18:51:33 +02:00

10 lines
236 B
JavaScript

var latest = require('../');
var packages = ['autocast', 'ampache', 'webamp', 'npm'];
packages.forEach(function(package) {
latest(package, function(err, v) {
if (err) throw err;
console.log('>> %s %s', package, v);
});
});