Skip to content

Commit 8733449

Browse files
authored
Merge pull request #22 from philenius/feature/upgrade-to-angular-v17
Upgrade to Angular v17
2 parents 89b538d + 5b81957 commit 8733449

21 files changed

+4281
-4538
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Node.js
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: '16.x'
15+
node-version: '20.x'
1616

1717
- name: Install dependencies
1818
run: npm ci

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.11.1

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 17.2.0
4+
5+
Pull request: https://github.com/philenius/ngx-annotate-text/pull/22
6+
7+
- Upgrade to Angular 17.2.0
8+
39
## 16.0.1
410

511
Pull request: https://github.com/philenius/ngx-annotate-text/pull/21

angular.json

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"prefix": "app",
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
1616
"outputPath": "dist/ngx-annotate-text-workspace",
1717
"index": "src/index.html",
18-
"main": "src/main.ts",
18+
"browser": "src/main.ts",
1919
"polyfills": ["zone.js"],
2020
"tsConfig": "tsconfig.app.json",
2121
"assets": ["src/favicon.ico", "src/assets"],
@@ -39,12 +39,9 @@
3939
"outputHashing": "all"
4040
},
4141
"development": {
42-
"buildOptimizer": false,
4342
"optimization": false,
44-
"vendorChunk": true,
4543
"extractLicenses": false,
46-
"sourceMap": true,
47-
"namedChunks": true
44+
"sourceMap": true
4845
}
4946
},
5047
"defaultConfiguration": "production"
@@ -53,18 +50,18 @@
5350
"builder": "@angular-devkit/build-angular:dev-server",
5451
"configurations": {
5552
"production": {
56-
"browserTarget": "ngx-annotate-text-workspace:build:production"
53+
"buildTarget": "ngx-annotate-text-workspace:build:production"
5754
},
5855
"development": {
59-
"browserTarget": "ngx-annotate-text-workspace:build:development"
56+
"buildTarget": "ngx-annotate-text-workspace:build:development"
6057
}
6158
},
6259
"defaultConfiguration": "development"
6360
},
6461
"extract-i18n": {
6562
"builder": "@angular-devkit/build-angular:extract-i18n",
6663
"options": {
67-
"browserTarget": "ngx-annotate-text-workspace:build"
64+
"buildTarget": "ngx-annotate-text-workspace:build"
6865
}
6966
},
7067
"test": {

0 commit comments

Comments
 (0)