Remove inert devDependencies - #557
Draft
NullVoxPopuli-ai-agent wants to merge 4 commits into
Draft
Conversation
broccoli-merge-trees, static-postcss-addon-tree, ember-named-blocks-polyfill, lodash.get, and ember-native-dom-helpers are declared but not referenced anywhere in the addon, dummy app, or tests. Named blocks are native in all supported Ember versions, so the polyfill was inert. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The one usage was didInsert/willDestroy in es-header-navbar-link. A single modifier() now captures the element and returns the listener cleanup, which also removes the no-at-ember-render-modifiers lint suppressions. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
import { service } is the recommended form since Ember 4.1; inject is
removed in newer majors.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
ember-decorators-polyfill targets pre-Octane decorators; this addon is
edition octane and compiles decorators with babel. ember-array-helper
duplicates the {{array}} helper built into Ember since 3.8; the docs
pages that use {{array}} prerender identically without it.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
✅ Deploy Preview for ember-styleguide ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Draft
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removes two devDependencies that no longer do anything:
ember-decorators-polyfill— targets pre-Octane decorators; this addon is edition octane and compiles decorators with@babel/plugin-proposal-decorators.ember-array-helper— duplicates the{{array}}helper built into Ember since 3.8. The docs pages that use{{array}}(e.g. concepts/colors) prerender identically with the built-in.ember-fetchstays: the docs fastboot build actively bundles its fastboot shim.Note
Draft until #552–#554 land — this assumes them as its base, so only the last commit is the reviewable diff here.
Part of the incremental path toward a v2 addon (#551 is the reference).
Test plan
pnpm lint(js, hbs, css, format) passespnpm exec ember test— 27 tests, 0 failurespnpm build(bottled-ember docs + prember prerender) succeeds; prerenderedconcepts/colorsstill renders the{{array}}-driven swatches🤖 Generated with Claude Code