From 008eb81b05de91cda00e262d1cd6d11836440561 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Tue, 8 Mar 2022 10:52:19 +0800 Subject: [PATCH 1/3] add missing/implicit dependencies otherwise will need to include `--shamefully-hoist` flag when installing with pnpm --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 2150aae8f..74f68d09c 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "@ionic-native/splash-screen": "5.0.0-beta.15", "@ionic-native/status-bar": "5.0.0-beta.15", "@ionic/angular": "^6.0.0-rc.2", + "@ionic/core": "^6.0.0-rc.2", "@ionic/storage": "^2.1.3", "cordova-android": "^8.1.0", "cordova-ios": "^5.1.1", @@ -42,6 +43,7 @@ "cordova-plugin-statusbar": "^2.4.3", "cordova-plugin-whitelist": "^1.3.4", "core-js": "^3.6.4", + "ionicons": "^5.5.4", "rxjs": "^6.5.4", "sw-toolbox": "3.6.0", "swiper": "^7.2.0", From d60de4bc3f08bfe1ce554eddddb988643cd5a706 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Tue, 8 Mar 2022 10:54:41 +0800 Subject: [PATCH 2/3] fix layout bug in tutorial slides --- src/app/app.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/app.scss b/src/app/app.scss index e69de29bb..56bc1d834 100644 --- a/src/app/app.scss +++ b/src/app/app.scss @@ -0,0 +1,9 @@ +page-tutorial { + .swiper .swiper-slide { + flex-direction: column; + + img { + max-height: 40vh; + } + } +} From b21518e339b8f3a274d17622f89d0e1e4dc6a9fc Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Wed, 9 Mar 2022 01:20:52 +0800 Subject: [PATCH 3/3] update angular compiler to fix prod build error reference: https://github.com/angular/angular-cli/issues/22606 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 74f68d09c..e6d372e68 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "devDependencies": { "@angular-devkit/architect": "^0.1300.1", - "@angular-devkit/build-angular": "~13.0.1", + "@angular-devkit/build-angular": "~13.2.5", "@angular-devkit/core": "^13.0.1", "@angular-devkit/schematics": "^13.0.1", "@angular-eslint/builder": "13.0.0-alpha.0",