Skip to content
Snippets Groups Projects
Commit 3aed1017 authored by Konstantin Schulz's avatar Konstantin Schulz
Browse files

prepare angular update by committing

parent 36f78f7c
No related branches found
No related tags found
No related merge requests found
python3 ./mc_frontend/update_version.py
docker compose build docker compose build
docker compose down docker compose down
docker compose up -d docker compose up -d
FROM node:14-slim as BUILD_IMAGE FROM node:18-slim as BUILD_IMAGE
WORKDIR /home/mc/mc_frontend WORKDIR /home/mc/mc_frontend
COPY package.json . COPY package.json .
RUN npm install RUN npm install
FROM node:14-slim FROM node:18-slim
WORKDIR /home/mc/mc_frontend WORKDIR /home/mc/mc_frontend
RUN apt-get update RUN apt-get update
# install Chromium dependencies # install Chromium dependencies
......
This diff is collapsed.
...@@ -54,11 +54,11 @@ ...@@ -54,11 +54,11 @@
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/architect": "^0.900.4", "@angular-devkit/architect": "^0.900.4",
"@angular-devkit/build-angular": "^0.900.4", "@angular-devkit/build-angular": "^0.901.15",
"@angular-devkit/core": "^9.0.4", "@angular-devkit/core": "^9.0.4",
"@angular-devkit/schematics": "^9.0.4", "@angular-devkit/schematics": "^9.0.4",
"@angular/cli": "^9.0.4", "@angular/cli": "^9.0.4",
"@angular/compiler": "^9.0.4", "@angular/compiler": "^9.1.13",
"@angular/compiler-cli": "^9.0.4", "@angular/compiler-cli": "^9.0.4",
"@angular/language-service": "^7.2.16", "@angular/language-service": "^7.2.16",
"@ionic/angular-toolkit": "^2.2.0", "@ionic/angular-toolkit": "^2.2.0",
......
...@@ -85,7 +85,7 @@ describe('AppComponent', () => { ...@@ -85,7 +85,7 @@ describe('AppComponent', () => {
}); });
it('should initialize the app', async () => { it('should initialize the app', async () => {
const platformStub: PlatformStub = TestBed.get(Platform); const platformStub: PlatformStub = TestBed.inject(Platform);
expect(platformStub.wasReadyCalled).toBeTruthy(); expect(platformStub.wasReadyCalled).toBeTruthy();
await platformReadySpy; await platformReadySpy;
expect(statusBarSpy.styleDefault).toHaveBeenCalled(); expect(statusBarSpy.styleDefault).toHaveBeenCalled();
......
...@@ -17,7 +17,6 @@ import {APP_BASE_HREF} from '@angular/common'; ...@@ -17,7 +17,6 @@ import {APP_BASE_HREF} from '@angular/common';
@NgModule({ @NgModule({
declarations: [AppComponent], declarations: [AppComponent],
entryComponents: [],
imports: [ imports: [
IonicModule.forRoot(), IonicModule.forRoot(),
BrowserModule, BrowserModule,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment