mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
Commit the deprecation workflow to prevent fixed deprecations from creeping back in
This commit is contained in:
10
ui/config/deprecation-workflow.js
Normal file
10
ui/config/deprecation-workflow.js
Normal file
@@ -0,0 +1,10 @@
|
||||
/* global self */
|
||||
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
||||
self.deprecationWorkflow.config = {
|
||||
workflow: [
|
||||
{ handler: 'throw', matchId: 'ember-inflector.globals' },
|
||||
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
||||
{ handler: 'silence', matchId: 'ember-console.deprecate-logger' },
|
||||
{ handler: 'silence', matchId: 'ember-component.send-action' },
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user