Skip to content

Commit 0fc7061

Browse files
committed
Remove checks for no longer existing optional features
1 parent 4bd4aa8 commit 0fc7061

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

lib/index.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,6 @@ module.exports = {
7878
);
7979
}
8080

81-
if (
82-
optionalFeaturesMissing ||
83-
optionalFeatures.isFeatureEnabled('application-template-wrapper')
84-
) {
85-
message.push(
86-
`* The application-template-wrapper optional feature should be disabled under Octane, run \`ember feature:disable application-template-wrapper\` to disable it`
87-
);
88-
}
89-
90-
if (
91-
optionalFeaturesMissing ||
92-
!optionalFeatures.isFeatureEnabled('template-only-glimmer-components')
93-
) {
94-
message.push(
95-
`* The template-only-glimmer-components optional feature should be enabled under Octane, run \`ember feature:enable template-only-glimmer-components\` to enable it`
96-
);
97-
}
98-
9981
if (message.length > 0) {
10082
message.unshift(
10183
`You have configured your application to indicate that it is using the 'octane' edition (via \`setEdition('octane')\`), but the appropriate Octane features were not enabled:\n`

0 commit comments

Comments
 (0)