Skip to content

Commit

Permalink
Replaced .js with .ts in publicEntrypoints() (#244)
Browse files Browse the repository at this point in the history
* bugfix: Replaced .js with .ts in publicEntrypoints()

* chore: Added changset

---------

Co-authored-by: ijlee2 <[email protected]>
  • Loading branch information
ijlee2 and ijlee2 authored Sep 5, 2024
1 parent e229d5e commit 3453d44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/five-planets-act.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ember-container-query": patch
---

Replaced .js with .ts in publicEntrypoints()
2 changes: 1 addition & 1 deletion packages/ember-container-query/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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(['**/*.js', 'index.js', 'template-registry.js']),
addon.publicEntrypoints(['**/*.js', 'index.ts', 'template-registry.ts']),

// 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

0 comments on commit 3453d44

Please sign in to comment.