decide.nolog.cz/config/deprecation-workflow.js

15 lines
420 B
JavaScript
Raw Normal View History

2019-04-24 21:43:02 +02:00
/* global self */
2019-04-24 21:43:02 +02:00
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
2017-07-31 13:59:19 +02:00
workflow: [
// @ember/string deprecation is thrown even if all deprecated behavior is
// fixed due to a bug in Ember itself. Details can be found in:
// https://github.com/emberjs/ember.js/issues/20377
{
handler: 'silence',
matchId: 'ember-string.add-package',
},
],
2017-07-31 13:59:19 +02:00
};