Skip to content

Commit

Permalink
Fix up entry points that actually don't work due to prebundling
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeasday committed Apr 11, 2022
1 parent 5fa12be commit 454b023
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/components/html.js
@@ -1 +1,2 @@
module.exports = require('./dist/esm/html');
// eslint-disable-next-line import/no-unresolved
export * from './dist/esm/html';
3 changes: 2 additions & 1 deletion lib/router/utils.js
@@ -1 +1,2 @@
module.exports = require('./dist/esm/utils');
// eslint-disable-next-line import/no-unresolved
export * from './dist/esm/utils';
3 changes: 2 additions & 1 deletion lib/theming/create.js
@@ -1 +1,2 @@
module.exports = require('./dist/esm/create');
// eslint-disable-next-line import/no-unresolved
export * from './dist/esm/create';

0 comments on commit 454b023

Please sign in to comment.