@@ -79,10 +79,10 @@ Now that the spew has settled down, you can process one deprecation at a time wh
7979
8080What does that individual deprecation workflow look like?
8181
82- 1. Change one entry in ` config /deprecation-workflow.js` from ` silence` to ` throw` .
82+ 1. Change one entry in ` app /deprecation-workflow.js` from ` silence` to ` throw` .
83832. Run your tests or use your application.
84843. Errors will be thrown for just that one deprecation, and you can track down the fixes needed in relative isolation of the rest of the deprecations.
85- 4. Once the deprecation has been dealt with , remove its entry from ` config /deprecation-workflow.js` .
85+ 4. Once the deprecation has been dealt with , remove its entry from ` app /deprecation-workflow.js` .
86865. Lather and repeat.
8787
8888### Handlers
@@ -122,7 +122,7 @@ If your app has disabled test files in development environment you can force ena
122122
123123To force all deprecations to throw (can be useful in larger teams to prevent
124124accidental introduction of deprecations), update your
125- ` config /deprecation-workflow.js` :
125+ ` app /deprecation-workflow.js` :
126126
127127` ` ` javascript
128128window.deprecationWorkflow.config = {
@@ -135,7 +135,7 @@ window.deprecationWorkflow.config = {
135135By default, the console based deprecations that occur during template
136136compilation are suppressed in favor of browser deprecations ran during the test
137137suite . If you would prefer to still have the deprecations in the console , add
138- the following to your ` config /environment.js` :
138+ the following to your ` app /environment.js` :
139139
140140` ` ` javascript
141141module.exports = function (env) {
0 commit comments