mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 20:30:04 +02:00
10 lines
236 B
JavaScript
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);
|
|
});
|
|
});
|