Github user audreyso commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/552#discussion_r115030625
  
    --- Diff: cordova-lib/src/cordova/plugin.js ---
    @@ -205,8 +205,29 @@ module.exports = function plugin(command, targets, 
opts) {
                                 .thenResolve(pluginInfo);
                             })
                             .then(function(pluginInfo){
    +                            var pkgJson;
    +                            var pkgJsonPath = 
path.join(projectRoot,'package.json');
    +
                                 // save to config.xml
                                 if(saveToConfigXmlOn(config_json, opts)){
    +                                // If statement to see if pkgJsonPath 
exists in the filesystem
    +                                if(fs.existsSync(pkgJsonPath)) {
    +                                    // Delete any previous caches of 
require(package.json)
    +                                    pkgJson = 
cordova_util.requireNoCache(pkgJsonPath);
    +                                }
    +                                // If package.json exists, the plugin 
object and plugin name 
    +                                // will be added to package.json if not 
already there.
    +                                if(pkgJson){
    --- End diff --
    
    done!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to