Skip to content

Commit 3825b05

Browse files
committed
release: v8.0.0
1 parent 55dca58 commit 3825b05

File tree

7 files changed

+3974
-3755
lines changed

7 files changed

+3974
-3755
lines changed

.github/workflows/ngx-form-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [ 18.16.1 ]
17+
node-version: [ 18.19.1 ]
1818

1919
steps:
2020
- uses: actions/checkout@v2

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ npm install --save @paddls/ngx-form
5050

5151
| `Angular` | `NgxForm` |
5252
|--------------------|-------------------|
53+
| `18.0.0` and above | `8.0.0` and above |
5354
| `17.0.0` and above | `7.0.0` and above |
5455
| `16.0.0` and above | `6.0.0` and above |
5556
| `15.0.0` and above | `5.0.0` and above |

angular.json

+9-7
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,15 @@
5252
"prefix": "app",
5353
"architect": {
5454
"build": {
55-
"builder": "@angular-devkit/build-angular:browser",
55+
"builder": "@angular-devkit/build-angular:application",
5656
"options": {
57-
"outputPath": "dist/ngx-form-app",
57+
"outputPath": {
58+
"base": "dist/ngx-form-app"
59+
},
5860
"index": "projects/ngx-form-app/src/index.html",
59-
"main": "projects/ngx-form-app/src/main.ts",
60-
"polyfills": "projects/ngx-form-app/src/polyfills.ts",
61+
"polyfills": [
62+
"projects/ngx-form-app/src/polyfills.ts"
63+
],
6164
"tsConfig": "projects/ngx-form-app/tsconfig.app.json",
6265
"aot": true,
6366
"assets": [
@@ -67,7 +70,8 @@
6770
"styles": [
6871
"projects/ngx-form-app/src/styles.scss"
6972
],
70-
"scripts": []
73+
"scripts": [],
74+
"browser": "projects/ngx-form-app/src/main.ts"
7175
},
7276
"configurations": {
7377
"production": {
@@ -82,8 +86,6 @@
8286
"sourceMap": false,
8387
"namedChunks": false,
8488
"extractLicenses": true,
85-
"vendorChunk": false,
86-
"buildOptimizer": true,
8789
"budgets": [
8890
{
8991
"type": "initial",

0 commit comments

Comments
 (0)