github.com/ferranbt/nomad@v0.9.3-0.20190607002617-85c449b7667c/ui/config/deprecation-workflow.js (about) 1 /* global self */ 2 self.deprecationWorkflow = self.deprecationWorkflow || {}; 3 self.deprecationWorkflow.config = { 4 workflow: [ 5 { handler: 'throw', matchId: 'ember-inflector.globals' }, 6 { handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' }, 7 { handler: 'throw', matchId: 'ember-console.deprecate-logger' }, 8 // Only used in ivy-codemirror. 9 // PR open: https://github.com/IvyApp/ivy-codemirror/pull/40/files 10 { handler: 'log', matchId: 'ember-component.send-action' }, 11 ], 12 };