updating to angular 21
This commit is contained in:
3892
package-lock.json
generated
3892
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
29
package.json
29
package.json
@@ -21,23 +21,24 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/common": "^20.1.0",
|
"@angular/cdk": "^21.1.2",
|
||||||
"@angular/compiler": "^20.1.0",
|
"@angular/common": "^21.1.2",
|
||||||
"@angular/core": "^20.1.0",
|
"@angular/compiler": "^21.1.2",
|
||||||
"@angular/forms": "^20.1.0",
|
"@angular/core": "^21.1.2",
|
||||||
"@angular/platform-browser": "^20.1.0",
|
"@angular/forms": "^21.1.2",
|
||||||
"@angular/platform-server": "^20.1.0",
|
"@angular/platform-browser": "^21.1.2",
|
||||||
"@angular/router": "^20.1.0",
|
"@angular/platform-server": "^21.1.2",
|
||||||
"@angular/ssr": "^20.1.5",
|
"@angular/router": "^21.1.2",
|
||||||
"express": "^5.1.0",
|
"@angular/ssr": "^21.1.2",
|
||||||
"@ng-icons/core": "^25.0.1",
|
"@ng-icons/core": "^25.0.1",
|
||||||
|
"express": "^5.1.0",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular/build": "^20.1.5",
|
"@angular/build": "^21.1.2",
|
||||||
"@angular/cli": "^20.1.5",
|
"@angular/cli": "^21.1.2",
|
||||||
"@angular/compiler-cli": "^20.1.0",
|
"@angular/compiler-cli": "^21.1.2",
|
||||||
"@types/express": "^5.0.1",
|
"@types/express": "^5.0.1",
|
||||||
"@types/jasmine": "~5.1.0",
|
"@types/jasmine": "~5.1.0",
|
||||||
"@types/node": "^20.17.19",
|
"@types/node": "^20.17.19",
|
||||||
@@ -47,7 +48,7 @@
|
|||||||
"karma-coverage": "~2.2.0",
|
"karma-coverage": "~2.2.0",
|
||||||
"karma-jasmine": "~5.1.0",
|
"karma-jasmine": "~5.1.0",
|
||||||
"karma-jasmine-html-reporter": "~2.1.0",
|
"karma-jasmine-html-reporter": "~2.1.0",
|
||||||
"ng-packagr": "^20.1.0",
|
"ng-packagr": "^21.1.0",
|
||||||
"typescript": "~5.8.2"
|
"typescript": "~5.9.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { bootstrapApplication } from '@angular/platform-browser';
|
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
|
||||||
import { App } from './app/app';
|
import { App } from './app/app';
|
||||||
import { config } from './app/app.config.server';
|
import { config } from './app/app.config.server';
|
||||||
|
|
||||||
const bootstrap = () => bootstrapApplication(App, config);
|
const bootstrap = (context: BootstrapContext) => bootstrapApplication(App, config, context);
|
||||||
|
|
||||||
export default bootstrap;
|
export default bootstrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user