Skip to content

Commit

Permalink
Fix empty file generate
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Aug 22, 2024
1 parent 7f25ed2 commit c66383a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ember-power-datepicker/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default {
// up your addon's public API. Also make sure your package.json#exports
// is aligned to the config here.
// See https://github.com/embroider-build/embroider/blob/main/docs/v2-faq.md#how-can-i-define-the-public-exports-of-my-addon
addon.publicEntrypoints(['index.js', 'components/**/*.js', 'template-registry.js']),
addon.publicEntrypoints(['index.js', 'components/**/*.js']),

// These are the modules that should get reexported into the traditional
// "app" tree. Things in here should also be in publicEntrypoints above, but
Expand Down
2 changes: 1 addition & 1 deletion ember-power-datepicker/src/template-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Add all your components, helpers and modifiers to the template registry here, so apps don't have to do this.
// See https://typed-ember.gitbook.io/glint/environments/ember/authoring-addons

import type PowerDatepickerComponent from './components/power-datepicker.ts';
import type PowerDatepickerComponent from './components/power-datepicker';

export default interface EmberPowerDatepickerRegistry {
PowerDatepicker: typeof PowerDatepickerComponent;
Expand Down

0 comments on commit c66383a

Please sign in to comment.