93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
"use strict";
|
|
|
|
const config = require("../config");
|
|
|
|
const { getOrdered, loadPackage } = require("../depgraph");
|
|
const { getPackageVersion, publish } = require("../npm");
|
|
const { log } = require("../log");
|
|
|
|
const USER_AGENT = "ethers-dist@0.0.0";
|
|
const TAG = "next";
|
|
|
|
let dirnames = getOrdered();
|
|
|
|
// Only publish specific packages
|
|
if (process.argv.length > 2) {
|
|
let filter = process.argv.slice(2);
|
|
|
|
// Verify all named packages exist
|
|
filter.forEach((dirname) => {
|
|
try {
|
|
loadPackage(dirname);
|
|
} catch (error) {
|
|
console.log("Package not found: " + dirname);
|
|
process.exit(1);
|
|
}
|
|
});
|
|
|
|
// Filter out pacakges we don't care about
|
|
dirnames = dirnames.filter((dirname) => (filter.indexOf(dirname) >= 0));
|
|
}
|
|
|
|
(async function() {
|
|
let token = null;
|
|
|
|
// @TODO: Fail if there are any untracked files or unchecked in files
|
|
|
|
// Load the token from the encrypted store
|
|
try {
|
|
token = await config.get("token");
|
|
} catch (error) {
|
|
switch (error.message) {
|
|
case "wrong password":
|
|
log("<bold:Wrong password>");
|
|
break;
|
|
case "cancelled":
|
|
break;
|
|
default:
|
|
console.log(error);
|
|
}
|
|
|
|
log("<red:Aborting.>");
|
|
|
|
return;
|
|
}
|
|
|
|
token = token.trim().split("=");
|
|
|
|
let options = {
|
|
npmVersion: USER_AGENT,
|
|
tag: TAG
|
|
};
|
|
|
|
// Set the authentication token
|
|
options[token[0]] = token[1];
|
|
|
|
for (let i = 0; i < dirnames.length; i++) {
|
|
let dirname = dirnames[i];
|
|
|
|
if (dirname === "ethers") {
|
|
options.tag = "next";
|
|
} else {
|
|
options.tag = "latest";
|
|
}
|
|
|
|
let info = loadPackage(dirname);
|
|
let npmInfo = await getPackageVersion(info.name);
|
|
if (!npmInfo) { npmInfo = { version: "NEW" }; }
|
|
|
|
if (info.tarballHash === npmInfo.tarballHash) { continue; }
|
|
|
|
log(`<bold:Publishing:> ${info.name}...`);
|
|
log(` <blue:Version:> ${npmInfo.version} <bold:=\\>> ${info.version}`);
|
|
|
|
let success = await publish(dirname, options);
|
|
if (!success) {
|
|
log(" <red:FAILED! Aborting.>");
|
|
return;
|
|
}
|
|
log(" <green:Done.>");
|
|
}
|
|
|
|
})();
|