Skip to content

Commit

Permalink
feat: allow extension in mutator import
Browse files Browse the repository at this point in the history
  • Loading branch information
henkerik committed Jan 8, 2025
1 parent 8c57118 commit 69cc381
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/reference/configuration/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ module.exports = {
};
```

The generated file will import the mutator with a `.js` extension.
The generated file will import the mutator with a `.js` extension.

#### header

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export type NormalizedMutator = {
name?: string;
default: boolean;
alias?: Record<string, string>;
extension?: string
extension?: string;
};

export type NormalizedOperationOptions = {
Expand Down

0 comments on commit 69cc381

Please sign in to comment.