ember-cli / ember-cli/ember-cli-deprecation-workflow
deprecate-array-prototype-extensions: cannot silence deprecation warnings
- Dominant language
- JavaScript
- Stars
- 166
- Forks
- 44
- PR merge metrics
- No merged PRs in 30d
Description
I have this `deprecation-workflow.js`:
```js
import setupDeprecationWorkflow from 'ember-cli-deprecation-workflow';
setupDeprecationWorkflow({
workflow: [
{
handler: "silence",
matchId: "template-action"
},
{
handler: "silence",
matchId: "new-helper-names"
},
{
handler: "silence",
matchId: 'deprecate-array-prototype-extensions' // Not working, maybe related to https://github.com/ember-cli/ember-cli-deprecation-workflow/issues/134 ?
}
]
});
```
The deprecation warning still appears:

Contributor guide
Assessment
This issue has not been assessed yet.