Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
3y3 committed Mar 5, 2024
1 parent 48e9528 commit a8d242a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/cmd/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,11 @@ async function handler(args: Arguments<any>) {
const resourcePaths: string[] = [];

// collect paths of all resources
Object.keys(resources).forEach((type) =>
resources[type as keyof Resources]?.forEach((path: string) =>
resourcePaths.push(path),
),
Object.keys(resources).forEach(
(type) =>
resources[type as keyof Resources]?.forEach((path: string) =>
resourcePaths.push(path),
),
);

//copy resources
Expand Down

0 comments on commit a8d242a

Please sign in to comment.