1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tools/release/deno_workspace.ts

56 lines
1.1 KiB
TypeScript

// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { path, Repo } from "./deps.ts";
export class DenoWorkspace {
#repo: Repo;
static get rootDirPath() {
const currentDirPath = path.dirname(path.fromFileUrl(import.meta.url));
return path.resolve(currentDirPath, "../../");
}
static async load(): Promise<DenoWorkspace> {
return new DenoWorkspace(
await Repo.load("deno", DenoWorkspace.rootDirPath),
);
}
private constructor(repo: Repo) {
this.#repo = repo;
}
get repo() {
return this.#repo;
}
get crates() {
return this.#repo.crates;
}
/** Gets the CLI dependency crates that should be published. */
getCliDependencyCrates() {
return this.getCliCrate()
.descendantDependenciesInRepo()
.filter((c) => c.name !== "test_util");
}
getCliCrate() {
return this.getCrate("deno");
}
getCrate(name: string) {
return this.#repo.getCrate(name);
}
runFormatter() {
return this.#repo.runCommandWithOutput([
"deno",
"run",
"--allow-write",
"--allow-read",
"--allow-run",
"./tools/format.js",
]);
}
}