github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/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      {
     9        handler: 'throw',
    10        matchId: 'ember-test-helpers.rendering-context.jquery-element',
    11      },
    12      { handler: 'throw', matchId: 'ember-cli-page-object.is-property' },
    13      { handler: 'throw', matchId: 'ember-views.partial' },
    14      { handler: 'silence', matchId: 'ember-string.prototype-extensions' },
    15      {
    16        handler: 'silence',
    17        matchId: 'ember-glimmer.link-to.positional-arguments',
    18      },
    19      {
    20        handler: 'silence',
    21        matchId: 'implicit-injections',
    22      },
    23    ],
    24  };