diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-08-29 20:19:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 20:19:54 +0200 |
commit | b62ef4d37bc1207abb2daed5e2568eb581f07aa2 (patch) | |
tree | 0e2e188a199d1ef2b7fdced66154021eb7eca6e5 /tools/release/01_bump_crate_versions.ts | |
parent | a938aaf36fde1ecf25fdbff323690c98c99a1ecc (diff) |
refactor(cli): Remove cli/node dependency on cli/compat (#15654)
Diffstat (limited to 'tools/release/01_bump_crate_versions.ts')
-rwxr-xr-x | tools/release/01_bump_crate_versions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/01_bump_crate_versions.ts b/tools/release/01_bump_crate_versions.ts index d2446d44c..75daaf3f5 100755 --- a/tools/release/01_bump_crate_versions.ts +++ b/tools/release/01_bump_crate_versions.ts @@ -97,7 +97,7 @@ async function getGitLog() { } async function updateStdVersion() { - const compatFilePath = $.path.join(cliCrate.folderPath, "compat/mod.rs"); + const compatFilePath = $.path.join(cliCrate.folderPath, "deno_std.rs"); const text = await Deno.readTextFile(compatFilePath); const versionRe = /std@([0-9]+\.[0-9]+\.[0-9]+)/; const stdVersionText = versionRe.exec(text)?.[1]; |