refactor(core): allow rxjs 5.5 as peer dependency (#3068)

This would allow Ionic v3 apps to use Ionic Native v5 wrappers.
This commit is contained in:
Lars Mikkelsen 2019-07-01 13:26:20 -04:00 committed by Daniel Sogl
parent 5857b9654c
commit ad11ed21ac

View File

@ -30,7 +30,7 @@ const DIST = path.resolve(ROOT, 'dist/@ionic-native');
const PACKAGES = []; const PACKAGES = [];
const MIN_CORE_VERSION = '^5.1.0'; 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 = { const PLUGIN_PEER_DEPENDENCIES = {
'@ionic-native/core': MIN_CORE_VERSION, '@ionic-native/core': MIN_CORE_VERSION,