Skip to content

Commit f71b227

Browse files
committed
Grr tests
1 parent b8f330b commit f71b227

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

addon/rollup.config.mjs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,18 @@ export default {
2222
// up your addon's public API. Also make sure your package.json#exports
2323
// is aligned to the config here.
2424
// See https://github.com/embroider-build/embroider/blob/main/docs/v2-faq.md#how-can-i-define-the-public-exports-of-my-addon
25-
addon.publicEntrypoints(['index.js']),
25+
addon.publicEntrypoints([
26+
'index.js',
27+
// Included for legacy reasons
28+
'has-ember-version.js',
29+
// included because this repo doesn't yet use the new source-testing approach
30+
// present in @ember/addon-blueprint
31+
//
32+
// We can delete these entries when we update the blueprint
33+
'-internal/is-promise',
34+
'-internal/debug-info-helpers',
35+
'-internal/test-metadata',
36+
]),
2637

2738
// Follow the V2 Addon rules about dependencies. Your code can import from
2839
// `dependencies` and `peerDependencies` as well as standard Ember-provided

0 commit comments

Comments
 (0)