From a697d3a578e280983b518e3f72ac333fb86f2bbf Mon Sep 17 00:00:00 2001 From: Vladimir Kotikov Date: Wed, 31 Aug 2016 17:36:18 +0300 Subject: [PATCH] CB-11795 Add 'protective' entry to cordovaDependencies The entry is required to protect end-users from fetching edge versions of the plugin by incompatible version of cordova. This also assumes that we will not introduce any regressions in compatibility w/ cordova in minor and patch releases. On every major release we will need to add similar entry with _next_ major version. This closes #47 --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index 10c5a5e..7ac811e 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,13 @@ }, "author": "Apache Software Foundation", "license": "Apache-2.0", + "engines": { + "cordovaDependencies": { + "2.0.0": { + "cordova": ">100" + } + } + }, "devDependencies": { "jshint": "^2.6.0" }