File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,21 @@ setupDeprecationWorkflow({
99 handling their deprecations, this should be set to "true"
1010 */
1111 throwOnUnhandled : false ,
12+ /* to generate this list, run your app for a while (or run the test suite),
13+ * and then run in the browser console:
14+ *
15+ * deprecationWorkflow.flushDeprecations()
16+ *
17+ * And copy the handlers here
18+ */
1219 workflow : [
13- /* ... handlers ... */
14- /* to generate this list, run your app for a while (or run the test suite),
15- * and then run in the browser console:
16- *
17- * deprecationWorkflow.flushDeprecations()
18- *
19- * And copy the handlers here
20- */
21- /* example: */
22- /* { handler: 'silence', matchId: 'template-action' }, */
20+ {
21+ "handler" : "silence" ,
22+ "matchId" : "importing-inject-from-ember-service"
23+ } ,
24+ {
25+ "handler" : "silence" ,
26+ "matchId" : "ember-data:deprecate-legacy-imports"
27+ }
2328 ] ,
2429} ) ;
You can’t perform that action at this time.
0 commit comments