Skip to content

Commit

Permalink
fix: add missing .yaml extension for loader manager
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Aug 23, 2024
1 parent ee4880f commit 0e56ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class LoaderManager implements Loader {
test: ['.json'], loader: LoaderId.JSON,
},
{
test: ['.yml'], loader: LoaderId.YAML,
test: ['.yml', '.yaml'], loader: LoaderId.YAML,
},
];
}
Expand Down

0 comments on commit 0e56ab4

Please sign in to comment.