Skip to content

Commit

Permalink
chore: run ng update
Browse files Browse the repository at this point in the history
  • Loading branch information
BBboy01 committed Jul 31, 2024
1 parent 064179e commit 90184f9
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 34 deletions.
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@
"projectType": "application",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist",
"outputPath": {
"base": "dist"
},
"index": "./site/src/index.html",
"main": "./site/src/main.ts",
"tsConfig": "./site/src/tsconfig.app.json",
"polyfills": "./site/src/polyfills.ts",
"polyfills": [
"./site/src/polyfills.ts"
],
"assets": [
"site/src/assets",
"site/src/favicon.ico",
Expand All @@ -31,12 +34,11 @@
"site/src/styles.less"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "./site/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -63,8 +65,6 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": false
}
},
Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,30 @@
"frontend"
],
"dependencies": {
"@angular/animations": "^17.0.0",
"@angular/cdk": "^17.0.0",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/pwa": "^17.0.0",
"@angular/router": "^17.0.0",
"@ant-design/icons-angular": "^17.0.0",
"@angular/animations": "^18.1.2",
"@angular/cdk": "^18.1.2",
"@angular/common": "^18.1.2",
"@angular/compiler": "^18.1.2",
"@angular/core": "^18.1.2",
"@angular/forms": "^18.1.2",
"@angular/platform-browser": "^18.1.2",
"@angular/platform-browser-dynamic": "^18.1.2",
"@angular/pwa": "^18.1.2",
"@angular/router": "^18.1.2",
"@ant-design/icons-angular": "^18.0.0",
"antd-mobile-demo-data": "^0.3.0",
"ng-zorro-antd": "^17.0.0"
"ng-zorro-antd": "^18.1.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-devkit/core": "^17.0.0",
"@angular-devkit/schematics": "^17.0.0",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.0",
"@angular/platform-server": "^17.0.0",
"@angular/service-worker": "^17.0.0",
"@angular/upgrade": "^17.0.0",
"@schematics/angular": "^17.0.0",
"@angular-devkit/build-angular": "^18.1.2",
"@angular-devkit/core": "^18.1.2",
"@angular-devkit/schematics": "^18.1.2",
"@angular/cli": "^18.1.2",
"@angular/compiler-cli": "^18.1.2",
"@angular/platform-server": "^18.1.2",
"@angular/service-worker": "^18.1.2",
"@angular/upgrade": "^18.1.2",
"@schematics/angular": "^18.1.2",
"@stackblitz/sdk": "^1.8.1",
"@types/estree": "^1.0.0",
"@types/jasmine": "~2.8.8",
Expand Down Expand Up @@ -99,9 +99,9 @@
"less": "^4.1.3",
"less-plugin-clean-css": "^1.5.1",
"marked": "^10.0.0",
"ng-packagr": "^17.0.0",
"ng-packagr": "^18.1.0",
"ngx-color": "^9.0.0",
"ngx-infinite-scroll": "^17.0.0",
"ngx-infinite-scroll": "^18.0.0",
"node-prismjs": "^0.1.2",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
Expand All @@ -118,7 +118,7 @@
"rxjs": "~7.6.0",
"ts-node": "~10.9.1",
"tslib": "^2.4.1",
"typescript": "~5.2.0",
"typescript": "~5.5.4",
"yaml-front-matter": "^4.1.1",
"zone.js": "~0.14.0"
},
Expand Down Expand Up @@ -147,4 +147,4 @@
"Android > 4.4"
],
"repository": "https://github.com/NG-ZORRO/ng-zorro-antd-mobile.git"
}
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"module": "esnext",
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
Expand Down

0 comments on commit 90184f9

Please sign in to comment.