'use strict'; var github = require('../_common/github.js'); var owner = 'ahmetb'; var repo = 'kubectx'; module.exports = function () { return github(null, owner, repo).then(function (all) { let builds = []; for (let build of all.releases) { // this installs separately if (build.name.includes('kubens')) { continue; } // this is the legacy bash script if (build.name === 'kubectx') { continue; } builds.push(build); } all.releases = builds; return all; }); }; if (module === require.main) { module.exports().then(function (all) { all = require('../_webi/normalize.js')(all); // just select the first 5 for demonstration all.releases = all.releases.slice(0, 5); console.info(JSON.stringify(all, null, 2)); }); }