Skip to content

Commit

Permalink
Update fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Oct 4, 2024
1 parent 5883f5c commit a04e53d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions www/tasks/publish-matrix.ts
Original file line number Diff line number Diff line change
@@ -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)}`);
});
});

0 comments on commit a04e53d

Please sign in to comment.