Skip to content

Commit f8a92d5

Browse files
committed
Update configuration references
1 parent 0b4cbe7 commit f8a92d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ Now that the spew has settled down, you can process one deprecation at a time wh
7979

8080
What 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`.
8383
2. Run your tests or use your application.
8484
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`.
8686
5. 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

123123
To force all deprecations to throw (can be useful in larger teams to prevent
124124
accidental introduction of deprecations), update your
125-
`config/deprecation-workflow.js`:
125+
`app/deprecation-workflow.js`:
126126

127127
```javascript
128128
window.deprecationWorkflow.config = {
@@ -135,7 +135,7 @@ window.deprecationWorkflow.config = {
135135
By default, the console based deprecations that occur during template
136136
compilation are suppressed in favor of browser deprecations ran during the test
137137
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`:
139139

140140
```javascript
141141
module.exports = function (env) {

0 commit comments

Comments
 (0)