mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
11 lines
371 B
TypeScript
Executable file
11 lines
371 B
TypeScript
Executable file
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
import { DenoWorkspace } from "./helpers/mod.ts";
|
|
|
|
const workspace = await DenoWorkspace.load();
|
|
|
|
for (const crate of workspace.getDependencyCrates()) {
|
|
await crate.increment("minor");
|
|
}
|
|
|
|
await workspace.updateLockFile();
|