File tree 1 file changed +15
-10
lines changed
1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,21 @@ setupDeprecationWorkflow({
9
9
handling their deprecations, this should be set to "true"
10
10
*/
11
11
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
+ */
12
19
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
+ }
23
28
] ,
24
29
} ) ;
You can’t perform that action at this time.
0 commit comments