11 lines
308 B
TypeScript
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 });
|
|
}
|