File tree 3 files changed +30
-4
lines changed
3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.0.0
4
+ * [[ #51 ] ( https://github.com/VadimDez/ngx-filter-pipe/pull/51 )] - Restructure
5
+ * [[ #42 ] ( https://github.com/VadimDez/ngx-filter-pipe/issues/42 )] - AOT support
6
+ * [[ #44 ] ( https://github.com/VadimDez/ngx-filter-pipe/issues/44 )] - Angular 5
7
+
8
+ ### Breaking change
9
+
10
+ * Bundle location is changed, therefore SYSTEMJS config should be updated*
11
+
12
+ Append to ` map `
13
+ ``` js
14
+ var map = {
15
+ ...
16
+ ' ngx-filter-pipe' : ' node_modules/ngx-filter-pipe/bundles'
17
+ }
18
+ ```
19
+ and then add to ` packages `
20
+
21
+ ``` js
22
+ var packages = {
23
+ ...
24
+ ' ngx-filter-pipe' : { defaultExtension: ' js' }
25
+ }
26
+ ```
27
+
28
+
3
29
## 1.0.2
4
30
* [[ #50 ] ( https://github.com/VadimDez/ngx-filter-pipe/issues/50 )] - How to call filterPipe transform from Component ?
5
31
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Append to `map`
7
7
``` js
8
8
var map = {
9
9
...
10
- ' ngx-filter-pipe' : ' node_modules/ngx-filter-pipe'
10
+ ' ngx-filter-pipe' : ' node_modules/ngx-filter-pipe/bundles '
11
11
}
12
12
```
13
13
@@ -16,6 +16,6 @@ and then add to `packages`
16
16
``` js
17
17
var packages = {
18
18
...
19
- ' ngx-filter-pipe' : { main : ' dist/bundles/ngx-filter-pipe.umd. js' }
19
+ ' ngx-filter-pipe' : { defaultExtension : ' js' }
20
20
}
21
21
````
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ngx-filter-pipe" ,
3
- "version" : " 1 .0.2 " ,
4
- "description" : " Angular 2 + pipeline for filtering arrays" ,
3
+ "version" : " 2 .0.0 " ,
4
+ "description" : " Angular 5 + pipeline for filtering arrays" ,
5
5
"author" :
" Vadym Yatsyuk <[email protected] >" ,
6
6
"license" : " MIT" ,
7
7
"scripts" : {
You can’t perform that action at this time.
0 commit comments