Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx authored Dec 14, 2024
1 parent 1cbe404 commit 4f7a951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/addon-dev/src/rollup-public-entrypoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function publicEntrypoints(args: {
'**/*.gjs',
];
// wait a bit first https://github.com/nodejs/node/issues/4760
await new Promise(resolve => setTimeout(resolve, 50));
await new Promise((resolve) => setTimeout(resolve, 50));
let matches = walkSync(args.srcDir, {
globs: include,
ignore: args.exclude,
Expand Down

0 comments on commit 4f7a951

Please sign in to comment.