Skip to content

Commit ea5f12c

Browse files
authored
Merge pull request raysuelzer#28 from raysuelzer/feature/angular-18
Support Angular 18
2 parents 30b3ae7 + 191e171 commit ea5f12c

File tree

7 files changed

+5569
-4856
lines changed

7 files changed

+5569
-4856
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ The goal of this project is to enable Angular 12+ support for the original [angu
44

55
## I suggest forking this project if it is critical to your project because I may not update this regularly. If you want to contribute to maintaining this project open an issue.
66

7+
The changelog for the package is here: https://github.com/raysuelzer/ngx-angular-query-builder/blob/main/projects/ngx-angular-query-builder/CHANGELOG.md
8+
79
This project uses code from https://github.com/designermanjeets/Angular-QueryBuilder a fork of https://github.com/zebzhao/Angular-QueryBuilder both developed under the MIT License.
810

911
## Change Log
1012

1113
https://github.com/raysuelzer/ngx-angular-query-builder/blob/main/projects/ngx-angular-query-builder/CHANGELOG.md
1214

15+
1316
## Branches
1417

1518
- Main should be the latest / highest version.
@@ -26,6 +29,7 @@ Use the following versions depending upon your angular version
2629
- Angular 15 - Versions 15.x.x
2730
- Angular 16 - Versions 16.x.x
2831
- Angular 17 - Versions 17.x.x
32+
- Angular 18 - Versions 18.x.x
2933

3034
# Examples
3135

angular.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,21 @@
4949
"prefix": "app",
5050
"architect": {
5151
"build": {
52-
"builder": "@angular-devkit/build-angular:browser",
52+
"builder": "@angular-devkit/build-angular:application",
5353
"options": {
54-
"outputPath": "dist/demo",
54+
"outputPath": {
55+
"base": "dist/demo"
56+
},
5557
"index": "projects/demo/src/index.html",
56-
"main": "projects/demo/src/main.ts",
57-
"polyfills": "projects/demo/src/polyfills.ts",
58+
"polyfills": [
59+
"projects/demo/src/polyfills.ts"
60+
],
5861
"tsConfig": "projects/demo/tsconfig.app.json",
5962
"inlineStyleLanguage": "scss",
6063
"assets": ["projects/demo/src/favicon.ico", "projects/demo/src/assets"],
6164
"styles": ["projects/demo/src/styles.scss"],
62-
"scripts": []
65+
"scripts": [],
66+
"browser": "projects/demo/src/main.ts"
6367
},
6468
"configurations": {
6569
"production": {
@@ -85,9 +89,7 @@
8589
},
8690
"development": {
8791
"aot": true,
88-
"buildOptimizer": false,
8992
"optimization": false,
90-
"vendorChunk": true,
9193
"extractLicenses": false,
9294
"sourceMap": true,
9395
"namedChunks": true

0 commit comments

Comments
 (0)