diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-01 15:40:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 15:40:32 -0500 |
commit | 4be0365fb8251a8614f16e6162f4f43c9885d2a3 (patch) | |
tree | 22a9a476053487c8ac22e53e20aea4bb483fbb97 /tools/release/02_publish_dependency_crates.ts | |
parent | 6a030a5396f9c838b4d4523f43ab2d9e2f502e04 (diff) |
chore(tools): use automation scripts from automation repo (#13796)
Diffstat (limited to 'tools/release/02_publish_dependency_crates.ts')
-rwxr-xr-x | tools/release/02_publish_dependency_crates.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/release/02_publish_dependency_crates.ts b/tools/release/02_publish_dependency_crates.ts index 44b5fe969..d210971a1 100755 --- a/tools/release/02_publish_dependency_crates.ts +++ b/tools/release/02_publish_dependency_crates.ts @@ -1,6 +1,7 @@ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-run=cargo --allow-net=crates.io // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -import { DenoWorkspace, getCratesPublishOrder } from "./helpers/mod.ts"; +import { DenoWorkspace } from "./deno_workspace.ts"; +import { getCratesPublishOrder } from "./deps.ts"; const workspace = await DenoWorkspace.load(); |