mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 09:39:51 +00:00
40 lines
973 B
JavaScript
40 lines
973 B
JavaScript
'use strict';
|
|
|
|
var github = require('../_common/github.js');
|
|
var owner = 'fish-shell';
|
|
var repo = 'fish-shell';
|
|
|
|
var ODDITIES = ['bundledpcre'];
|
|
|
|
module.exports = function () {
|
|
return github(null, owner, repo).then(function (all) {
|
|
all.releases = all.releases
|
|
.map(function (rel) {
|
|
for (let oddity of ODDITIES) {
|
|
let isOddity = rel.name.includes(oddity);
|
|
if (isOddity) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
// We can extract the macos bins from the .app
|
|
if (/\.app\.zip$/.test(rel.name)) {
|
|
rel.os = 'macos';
|
|
rel.arch = 'amd64';
|
|
return rel;
|
|
}
|
|
})
|
|
.filter(Boolean);
|
|
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));
|
|
});
|
|
}
|