Commit the deprecation workflow to prevent fixed deprecations from creeping back in

This commit is contained in:
Michael Lange
2019-03-25 21:24:32 -07:00
parent 7e6a4f74fc
commit 6d63a420bf

View 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' },
],
};