diff --git a/_tools/convert_to_workspace.ts b/_tools/convert_to_workspace.ts index 1417ad894e9d..3d9cebeec5d9 100644 --- a/_tools/convert_to_workspace.ts +++ b/_tools/convert_to_workspace.ts @@ -252,10 +252,6 @@ function fixPackagePath(path: string) { // Generate `deno.json` file. const denoJson = JSON.parse(await Deno.readTextFile("deno.json")); denoJson.workspaces = orderedPackages.map((pkg) => `./${pkg}`); -for (const pkg of packages) { - const fixedPkg = fixPackageName(pkg); - denoJson.imports[`@std/${fixedPkg}`] = `jsr:@std/${fixedPkg}@^${VERSION}`; -} await Deno.writeTextFile( "deno.json", JSON.stringify(denoJson, null, 2) + "\n",