[angular-18 | WIP] upgrade angular core and cli to v18
This commit is contained in:
parent
5e51edbcb3
commit
a18c1d6e0b
30
package.json
30
package.json
|
@ -21,19 +21,19 @@
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^17.3.11",
|
"@angular/animations": "^18.0.6",
|
||||||
"@angular/cdk": "^17.3.10",
|
"@angular/cdk": "^17.3.10",
|
||||||
"@angular/common": "^17.3.11",
|
"@angular/common": "^18.0.6",
|
||||||
"@angular/compiler": "^17.3.11",
|
"@angular/compiler": "^18.0.6",
|
||||||
"@angular/core": "^17.3.11",
|
"@angular/core": "^18.0.6",
|
||||||
"@angular/forms": "^17.3.11",
|
"@angular/forms": "^18.0.6",
|
||||||
"@angular/localize": "^17.3.11",
|
"@angular/localize": "^18.0.6",
|
||||||
"@angular/material": "^17.3.10",
|
"@angular/material": "^17.3.10",
|
||||||
"@angular/platform-browser": "^17.3.11",
|
"@angular/platform-browser": "^18.0.6",
|
||||||
"@angular/platform-browser-dynamic": "^17.3.11",
|
"@angular/platform-browser-dynamic": "^18.0.6",
|
||||||
"@angular/platform-server": "^17.3.11",
|
"@angular/platform-server": "^18.0.6",
|
||||||
"@angular/router": "^17.3.11",
|
"@angular/router": "^18.0.6",
|
||||||
"@angular/ssr": "^17.3.8",
|
"@angular/ssr": "^18.0.7",
|
||||||
"clipboard": "^1.5.16",
|
"clipboard": "^1.5.16",
|
||||||
"core-js": "^2.5.4",
|
"core-js": "^2.5.4",
|
||||||
"express": "^4.15.2",
|
"express": "^4.15.2",
|
||||||
|
@ -47,10 +47,10 @@
|
||||||
"zone.js": "~0.14.0"
|
"zone.js": "~0.14.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^17.3.8",
|
"@angular-devkit/build-angular": "^18.0.7",
|
||||||
"@angular/cli": "^17.3.8",
|
"@angular/cli": "^18.0.7",
|
||||||
"@angular/compiler-cli": "^17.3.11",
|
"@angular/compiler-cli": "^18.0.6",
|
||||||
"@angular/language-service": "^17.3.11",
|
"@angular/language-service": "^18.0.6",
|
||||||
"@types/compression": "^1.7.0",
|
"@types/compression": "^1.7.0",
|
||||||
"@types/express": "^4.17.0",
|
"@types/express": "^4.17.0",
|
||||||
"@types/jasmine": "~3.6.0",
|
"@types/jasmine": "~3.6.0",
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {SharedModule} from './shared/shared.module';
|
||||||
import {BrowserModule} from '@angular/platform-browser';
|
import {BrowserModule} from '@angular/platform-browser';
|
||||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||||
import {CommonModule} from '@angular/common';
|
import {CommonModule} from '@angular/common';
|
||||||
import {HTTP_INTERCEPTORS, HttpClientModule} from '@angular/common/http';
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
||||||
import {AppComponent} from './app.component';
|
import {AppComponent} from './app.component';
|
||||||
import {NavigationBarModule} from './openaireLibrary/sharedComponents/navigationBar.module';
|
import {NavigationBarModule} from './openaireLibrary/sharedComponents/navigationBar.module';
|
||||||
import {CookieLawModule} from './openaireLibrary/sharedComponents/cookie-law/cookie-law.module';
|
import {CookieLawModule} from './openaireLibrary/sharedComponents/cookie-law/cookie-law.module';
|
||||||
|
@ -19,25 +19,20 @@ import {ConfigurationService} from "./openaireLibrary/utils/configuration/config
|
||||||
import {RouteReuseStrategy} from '@angular/router';
|
import {RouteReuseStrategy} from '@angular/router';
|
||||||
import {CustomRouteReuseStrategy} from './openaireLibrary/shared/custom-route-reuse-strategy';
|
import {CustomRouteReuseStrategy} from './openaireLibrary/shared/custom-route-reuse-strategy';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({ declarations: [AppComponent, OpenaireErrorPageComponent],
|
||||||
imports: [
|
exports: [AppComponent],
|
||||||
SharedModule,
|
bootstrap: [AppComponent], imports: [SharedModule,
|
||||||
BrowserAnimationsModule,
|
BrowserAnimationsModule,
|
||||||
CommonModule,
|
CommonModule,
|
||||||
HttpClientModule,
|
|
||||||
ErrorModule,
|
ErrorModule,
|
||||||
NavigationBarModule, FeedbackModule, BottomModule,
|
NavigationBarModule, FeedbackModule, BottomModule,
|
||||||
CookieLawModule,
|
CookieLawModule,
|
||||||
BrowserAnimationsModule,
|
BrowserAnimationsModule,
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
AppRoutingModule
|
AppRoutingModule], providers: [
|
||||||
],
|
|
||||||
declarations: [AppComponent, OpenaireErrorPageComponent],
|
|
||||||
exports: [AppComponent],
|
|
||||||
providers: [
|
|
||||||
ConfigurationService,
|
ConfigurationService,
|
||||||
{provide: RouteReuseStrategy, useClass: CustomRouteReuseStrategy},
|
{ provide: RouteReuseStrategy, useClass: CustomRouteReuseStrategy },
|
||||||
{provide: APP_ID, useValue: 'eosc'},
|
{ provide: APP_ID, useValue: 'eosc' },
|
||||||
{
|
{
|
||||||
provide: HTTP_INTERCEPTORS,
|
provide: HTTP_INTERCEPTORS,
|
||||||
useClass: HttpInterceptorService,
|
useClass: HttpInterceptorService,
|
||||||
|
@ -48,10 +43,9 @@ import {CustomRouteReuseStrategy} from './openaireLibrary/shared/custom-route-re
|
||||||
useClass: ErrorInterceptorService,
|
useClass: ErrorInterceptorService,
|
||||||
multi: true
|
multi: true
|
||||||
},
|
},
|
||||||
[{provide: HTTP_INTERCEPTORS, useClass: TimeoutInterceptor, multi: true}],
|
[{ provide: HTTP_INTERCEPTORS, useClass: TimeoutInterceptor, multi: true }],
|
||||||
[{provide: DEFAULT_TIMEOUT, useValue: 30000}]
|
[{ provide: DEFAULT_TIMEOUT, useValue: 30000 }],
|
||||||
],
|
provideHttpClient(withInterceptorsFromDi())
|
||||||
bootstrap: [AppComponent]
|
] })
|
||||||
})
|
|
||||||
export class AppModule {
|
export class AppModule {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue