-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Remove support for non-Octane blueprints #19894
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove support for non-Octane blueprints #19894
Conversation
f273ca9 to
2fcb059
Compare
85a184a to
e550b7d
Compare
e550b7d to
4602942
Compare
| expect(_file('app/components/x-foo.js')).to.equal(fixture('component/component-dash.js')); | ||
| }); | ||
| // classic default | ||
| it('component-class foo --component-structure=classic --component-class=@ember/component', function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you double check what the RFC says RE: "--component-structure=classic"? I think we probably don't need that flag value anymore...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For anyone referencing this later, after discussing with @rwjblue we decided this would be fine in a separate PR.
The current blueprints test suite covers cases for both octane and non-octane blueprints, even though non-octane blueprints are no longer supported. As a result, this PR to upgrade ember-cli to 4.1.0 is blocked because all of the non-octane blueprint tests fail (since the CLI no longer generates non-Octane files).
This PR unblocks the ember-CLI upgrades by removing all of the non-Octane blueprint tests. In addition, it also removes all of the pre-Octane blueprints and fixtures since they are no longer supported and can't be generated in the current version of Ember CLI.