Skip to content

Commit ff9b4c7

Browse files
Remove app reexport of index (#1872)
1 parent b09345e commit ff9b4c7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ember-math-helpers/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@
120120
"./helpers/sum.js": "./dist/_app_/helpers/sum.js",
121121
"./helpers/tan.js": "./dist/_app_/helpers/tan.js",
122122
"./helpers/tanh.js": "./dist/_app_/helpers/tanh.js",
123-
"./helpers/trunc.js": "./dist/_app_/helpers/trunc.js",
124-
"./index.js": "./dist/_app_/index.js"
123+
"./helpers/trunc.js": "./dist/_app_/helpers/trunc.js"
125124
}
126125
},
127126
"files": [

ember-math-helpers/rollup.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default {
2323
// These are the modules that should get reexported into the traditional
2424
// "app" tree. Things in here should also be in publicEntrypoints above, but
2525
// not everything in publicEntrypoints necessarily needs to go here.
26-
addon.appReexports(['helpers/**/*.js', 'index.js']),
26+
addon.appReexports(['helpers/**/*.js']),
2727

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

0 commit comments

Comments
 (0)