@@ -79,10 +79,10 @@ Now that the spew has settled down, you can process one deprecation at a time wh
79
79
80
80
What does that individual deprecation workflow look like?
81
81
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` .
83
83
2. Run your tests or use your application.
84
84
3. 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` .
86
86
5. Lather and repeat.
87
87
88
88
### Handlers
@@ -122,7 +122,7 @@ If your app has disabled test files in development environment you can force ena
122
122
123
123
To force all deprecations to throw (can be useful in larger teams to prevent
124
124
accidental introduction of deprecations), update your
125
- ` config /deprecation-workflow.js` :
125
+ ` app /deprecation-workflow.js` :
126
126
127
127
` ` ` javascript
128
128
window.deprecationWorkflow.config = {
@@ -135,7 +135,7 @@ window.deprecationWorkflow.config = {
135
135
By default, the console based deprecations that occur during template
136
136
compilation are suppressed in favor of browser deprecations ran during the test
137
137
suite . 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` :
139
139
140
140
` ` ` javascript
141
141
module.exports = function (env) {
0 commit comments