From cd477bce7c40c22eababb87f2f14c79ecb5b78ec Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Mon, 27 Sep 2021 22:54:53 +0200 Subject: [PATCH] fix(build): allow rxjs 7 closes #3691 --- 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 6b70b31bd..890352382 100644 --- a/scripts/tasks/publish.ts +++ b/scripts/tasks/publish.ts @@ -31,7 +31,7 @@ const DIST = resolve(ROOT, 'dist/@awesome-cordova-plugins'); const PACKAGES = []; const MIN_CORE_VERSION = '^5.1.0'; -const RXJS_VERSION = '^5.5.0 || ^6.5.0'; +const RXJS_VERSION = '^5.5.0 || ^7.3.0'; const PLUGIN_PEER_DEPENDENCIES = { '@awesome-cordova-plugins/core': MIN_CORE_VERSION,