From cfe01e472c966311bb53c32c99c13b42cf1f9aa0 Mon Sep 17 00:00:00 2001 From: skulidropek <66840575+skulidropek@users.noreply.github.com> Date: Tue, 24 Mar 2026 21:24:34 +0000 Subject: [PATCH] fix(lib): replace node:url with url to satisfy effect lint rules --- packages/lib/src/shell/files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/src/shell/files.ts b/packages/lib/src/shell/files.ts index 1696dd2b..62af283b 100644 --- a/packages/lib/src/shell/files.ts +++ b/packages/lib/src/shell/files.ts @@ -10,7 +10,7 @@ import { type FileSpec, planFiles } from "../core/templates.js" import { FileExistsError } from "./errors.js" import { resolveBaseDir } from "./paths.js" -import { fileURLToPath } from "node:url" +import { fileURLToPath } from "url" const ensureParentDir = (path: Path.Path, fs: FileSystem.FileSystem, filePath: string) => fs.makeDirectory(path.dirname(filePath), { recursive: true })