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())