Skip to content

Commit

Permalink
Include .gjs and .js files
Browse files Browse the repository at this point in the history
  • Loading branch information
bertdeblock committed Oct 21, 2024
1 parent 01d16a8 commit bc91efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function getEntries(directory: string): Promise<EntriesResult> {
const path = join(directory, entryType);

if (await pathExists(path)) {
const files = await glob("**/*.{gts,ts}", { cwd: path });
const files = await glob("**/*.{gjs,gts,js,ts}", { cwd: path });
const filesSorted = files.sort();

for (let index = 0; index < filesSorted.length; index++) {
Expand Down

0 comments on commit bc91efc

Please sign in to comment.