@eljs/release
Version:
Release npm package easily.
90 lines (88 loc) • 3.34 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/internal/plugins/bootstrap.ts
var bootstrap_exports = {};
__export(bootstrap_exports, {
default: () => bootstrap_default
});
module.exports = __toCommonJS(bootstrap_exports);
var import_utils = require("../../utils");
var import_utils2 = require("@eljs/utils");
var import_node_path = __toESM(require("node:path"));
var bootstrap_default = (api) => {
api.modifyAppData(async (memo, { cwd }) => {
var _a, _b;
const packageRootPaths = await (0, import_utils2.getWorkspaces)(cwd);
const pkgJsonPaths = [];
const pkgs = [];
const pkgNames = [];
const validPkgRootPaths = [];
const validPkgNames = [];
for (const packageRootPath of packageRootPaths) {
const pkgJsonPath = import_node_path.default.join(packageRootPath, "package.json");
if (!await (0, import_utils2.isPathExists)(pkgJsonPath)) {
continue;
}
const pkg = await (0, import_utils2.readJson)(pkgJsonPath);
if (!pkg.name) {
import_utils2.logger.warn(
`No name field was found in ${import_utils2.chalk.cyan(pkgJsonPath)}, skipped.`
);
continue;
}
if (!pkg.private) {
validPkgRootPaths.push(packageRootPath);
validPkgNames.push(pkg.name);
}
pkgJsonPaths.push(pkgJsonPath);
pkgs.push(pkg);
pkgNames.push(pkg.name);
}
const registry = (_b = (_a = memo.projectPkg) == null ? void 0 : _a.publishConfig) == null ? void 0 : _b.registry;
const branch = await (0, import_utils2.getGitBranch)({
cwd
});
const latestTag = await (0, import_utils2.getGitLatestTag)({
cwd
});
if (validPkgNames.length === 0) {
throw new import_utils.AppError(`No valid package to publish in ${import_utils2.chalk.cyan(cwd)}.`);
}
return {
...memo,
pkgJsonPaths,
pkgs,
pkgNames,
validPkgRootPaths,
validPkgNames,
registry,
branch,
latestTag
};
});
};