From 57e93e6907a896cd05566f3c2f26ef9c4d80853e Mon Sep 17 00:00:00 2001 From: Max Reichmann Date: Thu, 26 Feb 2026 19:49:55 +0100 Subject: [PATCH] docs: Fix missing quote --- internal/documentation/docs/pages/extensibility/CustomTasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/documentation/docs/pages/extensibility/CustomTasks.md b/internal/documentation/docs/pages/extensibility/CustomTasks.md index b35dfc71046..23c27aa1c76 100644 --- a/internal/documentation/docs/pages/extensibility/CustomTasks.md +++ b/internal/documentation/docs/pages/extensibility/CustomTasks.md @@ -391,7 +391,7 @@ export default async function({dependencies, log, options, taskUtil, workspace}) } projectsVisited.add(projectName); const project = taskUtil.getProject(projectName); - const pkgResource = await project.getRootReader().byPath(../package.json"); + const pkgResource = await project.getRootReader().byPath("../package.json"); if (pkgResource) { const pkg = JSON.parse(await pkgResource.getString())