40332963ef
This updates to Ember 3.16 but leaves Ember Data at 3.12 so we don’t need to use the model fragments beta. It can be reviewed on a commit-by-commit basis: blueprint updates, fixes for test failures, and the removal of now-deprecated partials. It’s not a true update to Octane as that would involve turning on template-only components by default, which breaks various things. We can accomplish that separately and then add the edition setting to package.json.
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' },
|
|
],
|
|
};
|