Sergey Grebnov created CB-9815:
----------------------------------
Summary: Engine name="cordova" should test tools version, not
platform
Key: CB-9815
URL: https://issues.apache.org/jira/browse/CB-9815
Project: Apache Cordova
Issue Type: Bug
Components: CordovaLib
Reporter: Sergey Grebnov
Assignee: Sergey Grebnov
If I use the following engine tag inside some of my plugins
{code}
<engine name="cordova" version=">=4.3.0" />
{code}
I see that the tools compares version w/ platforms versions when installing
plugins, not the tools version.
This is due to the following implementation. We should update implementation
similar to cordova-plugman and threat cordova version as tools version not
platforms.
https://github.com/apache/cordova-lib/blob/d12be7c3e7b532bdea43321db2a3ce76b5f4d39f/cordova-lib/src/plugman/util/default-engines.js#L22
{code}
module.exports = function(project_dir){
return {
'cordova':
{ 'platform':'*', 'scriptSrc':
path.join(project_dir,'cordova','version') },
'cordova-plugman':
{ 'platform':'*', 'currentVersion':
require('../../../package.json').version },
'cordova-android':
{ 'platform':'android', 'scriptSrc':
path.join(project_dir,'cordova','version') },
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]