Skip to content

Commit

Permalink
fix: add default exports for module and backend
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Mar 26, 2024
1 parent 396e9a0 commit 5d449a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion plugins/qeta-backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@
export * from './service/router';
export * from './database';
export * from './search';
export { qetaPlugin, qetaPlugin as plugin } from './plugin';
export {
qetaPlugin,
qetaPlugin as plugin,
qetaPlugin as default,
} from './plugin';
5 changes: 4 additions & 1 deletion plugins/search-backend-module-qeta/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
* @packageDocumentation
*/

export { searchModuleQetaCollator } from './module';
export {
searchModuleQetaCollator,
searchModuleQetaCollator as default,
} from './module';
export * from './collators';

0 comments on commit 5d449a0

Please sign in to comment.