Skip to content

Commit 3eff44c

Browse files
committed
Docs updates for 4.x
1 parent b384fc7 commit 3eff44c

1 file changed

Lines changed: 5 additions & 34 deletions

File tree

README.md

Lines changed: 5 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ addressing a single deprecation at a time, and prevents backsliding
2323

2424
### Compatibility
2525

26+
4.x
27+
28+
- Ember.js 3.28 until at least 6.10
29+
- ember-auto-import, or embroider with webpack and vite
30+
2631
3.x
2732

2833
- Ember.js 3.28 until at least 5.4
@@ -130,40 +135,6 @@ window.deprecationWorkflow.config = {
130135
};
131136
```
132137

133-
### Template Deprecations
134-
135-
By default, the console based deprecations that occur during template
136-
compilation are suppressed in favor of browser deprecations ran during the test
137-
suite. If you would prefer to still have the deprecations in the console, add
138-
the following to your `app/environment.js`:
139-
140-
```javascript
141-
module.exports = function (env) {
142-
var ENV = {};
143-
144-
// normal things here
145-
146-
ENV.logTemplateLintToConsole = true;
147-
};
148-
```
149-
150-
### Configuration
151-
152-
In some cases, it may be necessary to indicate a different `config` directory
153-
from the default one (`/config`). For example, you may want the flushed
154-
deprecations file to be referenced in a config directory like `my-config`.
155-
156-
Adjust the `configPath` in your `package.json` file. The `/` will automatically
157-
be prefixed.
158-
159-
```javascript
160-
{
161-
'ember-addon': {
162-
configPath: 'my-config'
163-
}
164-
}
165-
```
166-
167138
## Contributing
168139

169140
Details on contributing to the addon itself (not required for normal usage).

0 commit comments

Comments
 (0)