Skip to content

Commit

Permalink
fix: revert cjs exports
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Mar 6, 2021
1 parent 5eed19c commit 9eefb1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion misc/storybook-custom-docs/src/manager-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function loader(this: WebpackLoaderContext): any {
return '';
}

export default loader;
module.exports.default = loader;

/**
* expose public types via declaration merging
Expand Down
2 changes: 1 addition & 1 deletion misc/storybook-custom-docs/src/preview-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ ${
return '';
}

export default loader;
module.exports.default = loader;

/**
* expose public types via declaration merging
Expand Down

0 comments on commit 9eefb1d

Please sign in to comment.