decide.nolog.cz/config/deprecation-workflow.js
Jeldrik Hanschke 7c523357dc
upgrade ember to 3.10 (#235)
Also adds a handy shortcut to run the bundlesize tests: `yarn test:bundlesize`.
2019-07-13 10:26:30 +02:00

11 lines
512 B
JavaScript

/* global self */
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
{ handler: "silence", matchId: "ember-cli-page-object.old-collection-api" },
{ handler: "silence", matchId: "deprecate-fetch-ember-data-support" },
{ handler: "silence", matchId: "computed-property.override" },
{ handler: "silence", matchId: "ember-cp-validations.inline-validator" },
{ handler: "silence", matchId: "ember-runtime.deprecate-copy-copyable" }
]
};