Skip to content

Commit ff7adb5

Browse files
committed
Do not enforce hyphenated names for glimmer components
1 parent 0ac36ea commit ff7adb5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/mixins/files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default Mixin.create({
114114

115115
let isGlimmer = await this.emberCli.twiddleJson.hasAddon(this.model, '@glimmer/component');
116116

117-
if (this.isPathInvalid('component', path)) {
117+
if (!isGlimmer && this.isPathInvalid('component', path)) {
118118
return;
119119
}
120120

0 commit comments

Comments
 (0)