From ad11ed21aca8dac72fad084c6156be5987db38f5 Mon Sep 17 00:00:00 2001 From: Lars Mikkelsen Date: Mon, 1 Jul 2019 13:26:20 -0400 Subject: [PATCH] refactor(core): allow rxjs 5.5 as peer dependency (#3068) This would allow Ionic v3 apps to use Ionic Native v5 wrappers. --- scripts/tasks/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tasks/publish.ts b/scripts/tasks/publish.ts index 620ff6928..898394988 100644 --- a/scripts/tasks/publish.ts +++ b/scripts/tasks/publish.ts @@ -30,7 +30,7 @@ const DIST = path.resolve(ROOT, 'dist/@ionic-native'); const PACKAGES = []; const MIN_CORE_VERSION = '^5.1.0'; -const RXJS_VERSION = '^6.5.0'; +const RXJS_VERSION = '^5.5.0 || ^6.5.0'; const PLUGIN_PEER_DEPENDENCIES = { '@ionic-native/core': MIN_CORE_VERSION,