13 lines
562 B
JavaScript
13 lines
562 B
JavaScript
/* global self */
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
{ handler: 'throw', matchId: 'ember-inflector.globals' },
|
|
{ handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
|
{ handler: 'throw', matchId: 'ember-console.deprecate-logger' },
|
|
{ handler: 'throw', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
|
|
{ handler: 'throw', matchId: 'ember-cli-page-object.is-property' },
|
|
{ handler: 'throw', matchId: 'ember-views.partial' },
|
|
],
|
|
};
|