Skip to content

Commit 5bdfd14

Browse files
committed
release(1.0.0): support for Angular v15
1 parent ccf6543 commit 5bdfd14

File tree

7 files changed

+34
-5
lines changed

7 files changed

+34
-5
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ Then in your HTML, you can use as:
3737
[config]="tagsInputConfig">
3838
</ti-angular-tags-input>
3939
```
40+
41+
## Compatibility
42+
43+
All released versions of this library (up to tag `0.1.16`) are compatible with Angular `^8.2.11`.
44+
45+
Use `1.x.x` for Angular `^15.x.x`
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
0.0.16
2+
0.0.5
3+
0.0.6
4+
0.0.7
5+
0.0.8
6+
0.1.10
7+
0.1.11
8+
0.1.12
9+
0.1.13
10+
0.1.15
11+
0.1.16
12+
0.1.5
13+
0.1.6
14+
0.1.7
15+
0.1.8
16+
0.1.9

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"ng": "ng",
66
"start": "set NODE_OPTIONS=--openssl-legacy-provider && ng serve",
77
"build": "ng build",
8-
"build:lib": "ng build angular-tags-input",
8+
"build:lib": "ng build angular-tags-input --configuration production",
99
"test": "jest",
1010
"lint": "ng lint",
1111
"copy:readme": "cp ./README.md ./projects/angular-tags-input/",

projects/angular-tags-input/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ Then in your HTML, you can use as:
3737
[config]="tagsInputConfig">
3838
</ti-angular-tags-input>
3939
```
40+
41+
## Compatibility
42+
43+
All released versions of this library (up to tag `0.1.16`) are compatible with Angular `^8.2.11`.
44+
45+
Use `1.x.x` for Angular `^15.x.x`

projects/angular-tags-input/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/angular-tags-input/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iomechs/angular-tags-input",
3-
"version": "0.1.17",
3+
"version": "1.0.0",
44
"dependencies": {
55
"tslib": "^2.0.0"
66
},
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./tsconfig.lib.json",
33
"angularCompilerOptions": {
4-
"enableIvy": false
4+
"enableIvy": true,
5+
"compilationMode": "partial"
56
}
67
}

0 commit comments

Comments
 (0)