Skip to content

Commit 700731b

Browse files
authored
Merge pull request #36 from sajivkumar/sajiv/to_angular_19
ugrade to ng 19
2 parents fd56f66 + e2c0005 commit 700731b

10 files changed

Lines changed: 18070 additions & 8384 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This plugins implements the browser version of [Mathjax v3][1] into [Angular][2]
44

5-
**_Note_**:This library was generated with [Angular CLI][8] version 17.
5+
**_Note_**:This library was generated with [Angular CLI][8] version 19
66

77
<div style="text-align:center"><a href="https://nodei.co/npm/mathjax-angular/"><img src="https://nodei.co/npm/mathjax-angular.png?downloads=true&downloadRank=true&stars=true&mini=true"/></a></div>
88

angular.json

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "lib",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-angular:ng-packagr",
13+
"builder": "@angular/build:ng-packagr",
1414
"options": {
1515
"project": "projects/mathjax-lib/ng-package.json"
1616
},
@@ -44,20 +44,24 @@
4444
"prefix": "app",
4545
"architect": {
4646
"build": {
47-
"builder": "@angular-devkit/build-angular:browser",
47+
"builder": "@angular/build:application",
4848
"options": {
49-
"outputPath": "dist/testMathjax",
49+
"outputPath": {
50+
"base": "dist/testMathjax"
51+
},
5052
"index": "projects/example/src/index.html",
51-
"main": "projects/example/src/main.ts",
52-
"polyfills": "projects/example/src/polyfills.ts",
53+
"polyfills": [
54+
"projects/example/src/polyfills.ts"
55+
],
5356
"tsConfig": "projects/example/tsconfig.app.json",
5457
"inlineStyleLanguage": "scss",
5558
"assets": [
5659
"projects/example/src/favicon.ico",
5760
"projects/example/src/assets"
5861
],
5962
"styles": ["projects/example/src/styles.scss"],
60-
"scripts": []
63+
"scripts": [],
64+
"browser": "projects/example/src/main.ts"
6165
},
6266
"configurations": {
6367
"production": {
@@ -103,17 +107,13 @@
103107
"outputHashing": "all"
104108
},
105109
"development": {
106-
"buildOptimizer": false,
107110
"optimization": false,
108-
"vendorChunk": true,
109111
"extractLicenses": false,
110112
"sourceMap": true,
111113
"namedChunks": true
112114
},
113115
"dev": {
114-
"buildOptimizer": false,
115116
"optimization": false,
116-
"vendorChunk": true,
117117
"extractLicenses": false,
118118
"sourceMap": true,
119119
"namedChunks": true
@@ -122,7 +122,7 @@
122122
"defaultConfiguration": "dev"
123123
},
124124
"serve": {
125-
"builder": "@angular-devkit/build-angular:dev-server",
125+
"builder": "@angular/build:dev-server",
126126
"configurations": {
127127
"production": {
128128
"buildTarget": "testMathjax:build:production"
@@ -140,12 +140,15 @@
140140
"defaultConfiguration": "dev"
141141
},
142142
"extract-i18n": {
143-
"builder": "@angular-devkit/build-angular:extract-i18n",
143+
"builder": "@angular/build:extract-i18n",
144144
"options": {
145145
"buildTarget": "testMathjax:build"
146146
}
147147
}
148148
}
149149
}
150+
},
151+
"cli": {
152+
"analytics": false
150153
}
151154
}

0 commit comments

Comments
 (0)