Skip to content

Commit

Permalink
Use .js for all entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
simonihmig committed Oct 13, 2022
1 parent ff176cf commit 0765810
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

module.exports = {
singleQuote: true,
printWidth: 100,
};
2 changes: 1 addition & 1 deletion files/__addonLocation__/rollup.config.__rollupExt__
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
plugins: [
// These are the modules that users should be able to import from your
// addon. Anything not listed here may get optimized away.
addon.publicEntrypoints(['components/**/*.<%= ext %>', 'index.<%= ext %>'<% if (typescript) {%>, 'glint.ts'<% } %>]),
addon.publicEntrypoints(['components/**/*.js', 'index.js'<% if (typescript) {%>, 'glint.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

0 comments on commit 0765810

Please sign in to comment.