fix(build): allow rxjs 7 closes #3691

This commit is contained in:
Daniel Sogl 2021-09-27 22:54:53 +02:00
parent 1ba8a6d989
commit cd477bce7c

View File

@ -31,7 +31,7 @@ const DIST = resolve(ROOT, 'dist/@awesome-cordova-plugins');
const PACKAGES = []; const PACKAGES = [];
const MIN_CORE_VERSION = '^5.1.0'; 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 = { const PLUGIN_PEER_DEPENDENCIES = {
'@awesome-cordova-plugins/core': MIN_CORE_VERSION, '@awesome-cordova-plugins/core': MIN_CORE_VERSION,