oden/third-party/vendor/deno_ast/scripts/02_build.ts
2024-03-08 11:03:01 -08:00

11 lines
308 B
TypeScript

// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { Repos } from "./repos.ts";
import { $ } from "./deps.ts";
const repos = await Repos.load();
for (const crate of repos.getCrates()) {
$.logStep(`Building ${crate.name}...`);
await crate.build({ allFeatures: true });
}