From a04e53d51c1927064ff083f93369056135e4ed65 Mon Sep 17 00:00:00 2001 From: Taras Mankovski Date: Fri, 4 Oct 2024 15:54:44 -0400 Subject: [PATCH] Update fmt --- www/tasks/publish-matrix.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/www/tasks/publish-matrix.ts b/www/tasks/publish-matrix.ts index 1d6b6b3..ede82fa 100644 --- a/www/tasks/publish-matrix.ts +++ b/www/tasks/publish-matrix.ts @@ -1,11 +1,12 @@ import { main } from "effection"; import { usePackages } from "../hooks/use-packages.ts"; -await main(function*() { - +await main(function* () { const packages = yield* usePackages(); - - const includeStatement = { include: packages.map(pkg => ({ workspace: pkg.workspace })) }; + + const includeStatement = { + include: packages.map((pkg) => ({ workspace: pkg.workspace })), + }; console.log(`::set-output name=matrix::${JSON.stringify(includeStatement)}`); -}); \ No newline at end of file +});