Skip to content

Commit 0b342a9

Browse files
committed
prepare 2.0.0
1 parent 6abb705 commit 0b342a9

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

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+
329
## 1.0.2
430
* [[#50](https://github.com/VadimDez/ngx-filter-pipe/issues/50)] - How to call filterPipe transform from Component ?
531

SYSTEMJS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Append to `map`
77
```js
88
var map = {
99
...
10-
'ngx-filter-pipe': 'node_modules/ngx-filter-pipe'
10+
'ngx-filter-pipe': 'node_modules/ngx-filter-pipe/bundles'
1111
}
1212
```
1313

@@ -16,6 +16,6 @@ and then add to `packages`
1616
```js
1717
var packages = {
1818
...
19-
'ngx-filter-pipe': { main: 'dist/bundles/ngx-filter-pipe.umd.js' }
19+
'ngx-filter-pipe': { defaultExtension: 'js' }
2020
}
2121
````

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"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",
55
"author": "Vadym Yatsyuk <[email protected]>",
66
"license": "MIT",
77
"scripts": {

0 commit comments

Comments
 (0)