Skip to content

Commit b519883

Browse files
Update 4.0.0 changelog with latest information regarding decorator issue. (#249)
1 parent 92971c8 commit b519883

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

CHANGELOG.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class AppModule {
6060

6161
**IMPORTANT NOTE ABOUT AOT AND ANGULAR-CLI**
6262

63-
If using the angular-cli with the --aot option - `@select` decorators will not work. The build process will work, but decorators will silently stop working.
63+
If using the angular-cli with the --aot option - `@select` decorators will not work. The build process will work, but decorators will silently stop working. This is due to angular/angular-cli/2799, which is on their roadmap already.
6464

6565
If you need decorators and AoT, you'll need to use the raw ngc compiler directly from the command line.
6666

@@ -78,7 +78,7 @@ export class MyComponent {
7878
```js
7979
import { NgRedux } from 'ng2-redux';
8080
export class MyComponent {
81-
thing$:Observable<string>;
81+
thing$: Observable<string>;
8282
constructor(private ngRedux:NgRedux<MyAppState>) {
8383

8484
}
@@ -88,9 +88,6 @@ export class MyComponent {
8888
}
8989
```
9090

91-
We are big fans of how the `@select` works - and high priority to get this working, but it seems to possibly be a limitation of the compiler. Any feedback / help / suggestions to try and get this working with AoT would be greatly appreciated.
92-
93-
9491
# 3.3.9
9592

9693
### Fixes

0 commit comments

Comments
 (0)