Skip to content

Commit

Permalink
Remove app reexport of index (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner authored Dec 10, 2024
1 parent b09345e commit ff9b4c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions ember-math-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@
"./helpers/sum.js": "./dist/_app_/helpers/sum.js",
"./helpers/tan.js": "./dist/_app_/helpers/tan.js",
"./helpers/tanh.js": "./dist/_app_/helpers/tanh.js",
"./helpers/trunc.js": "./dist/_app_/helpers/trunc.js",
"./index.js": "./dist/_app_/index.js"
"./helpers/trunc.js": "./dist/_app_/helpers/trunc.js"
}
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion ember-math-helpers/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default {
// These are the modules that should get reexported into the traditional
// "app" tree. Things in here should also be in publicEntrypoints above, but
// not everything in publicEntrypoints necessarily needs to go here.
addon.appReexports(['helpers/**/*.js', 'index.js']),
addon.appReexports(['helpers/**/*.js']),

// This babel config should *not* apply presets or compile away ES modules.
// It exists only to provide development niceties for you, like automatic
Expand Down

0 comments on commit ff9b4c7

Please sign in to comment.