Skip to content

Commit e04b773

Browse files
author
Yongnan Wu
committed
v13 - remove version requirement
1 parent 0d94838 commit e04b773

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log
22

3+
## 13.0.0
4+
5+
- Remove Angular version limit
6+
37
## 12.0.0
48

59
- Angular 12 upgrade

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-masonry",
3-
"version": "12.0.0",
3+
"version": "13.0.0",
44
"description": "Angular Module for displaying a feed of items in a masonry layout using https://github.com/desandro/masonry",
55
"keywords": [
66
"angular",
@@ -22,8 +22,8 @@
2222
"url": "https://github.com/wynfred/ngx-masonry/"
2323
},
2424
"peerDependencies": {
25-
"@angular/common": "^12.0.0",
26-
"@angular/core": "^12.0.0",
25+
"@angular/common": ">8.0.0",
26+
"@angular/core": ">8.0.0",
2727
"masonry-layout": "^4.2.0"
2828
},
2929
"dependencies": {

src/test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ declare const require: any;
1313
// First, initialize the Angular testing environment.
1414
getTestBed().initTestEnvironment(
1515
BrowserDynamicTestingModule,
16-
platformBrowserDynamicTesting()
16+
platformBrowserDynamicTesting(), {
17+
teardown: { destroyAfterEach: false }
18+
}
1719
);
1820
// Then we find all the tests.
1921
const context = require.context('./', true, /\.spec\.ts$/);

tsconfig.lib.prod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"declarationMap": false
55
},
66
"angularCompilerOptions": {
7-
"enableIvy": false
7+
"compilationMode": "partial"
88
}
99
}

0 commit comments

Comments
 (0)