Github user vladimir-kotikov commented on a diff in the pull request:

    https://github.com/apache/cordova-windows/pull/167#discussion_r60028006
  
    --- Diff: template/cordova/lib/PluginHandler.js ---
    @@ -123,24 +123,27 @@ var handlers = {
                     throw new CordovaError('<asset> tag without required 
"target" attribute');
                 }
     
    -            var www = options.usePlatformWww ? project.platformWww : 
project.www;
    -            copyFile(plugin.dir, obj.src, www, obj.target);
    +            copyFile(plugin.dir, obj.src, project.www, obj.target);
    +            if (options && options.usePlatformWww) copyFile(plugin.dir, 
obj.src, project.platformWww, obj.target);
             },
             uninstall:function(obj, plugin, project, options) {
                 var target = obj.target || obj.src;
     
                 if (!target) throw new CordovaError('<asset> tag without 
required "target" attribute');
     
    -            var www = options.usePlatformWww ? project.platformWww : 
project.www;
    -            removeFile(www, target);
    -            shell.rm('-Rf', path.resolve(www, 'plugins', plugin.id));
    +            removeFile(project.www, target);
    +            removeFile(project.www, path.join('plugins', plugin.id));
    +            if (options && options.usePlatformWww) {
    +                removeFile(project.platformWww, target);
    +                removeFile(project.platformWww, path.join('plugins', 
plugin.id));
    +            }
             }
         },
         'js-module': {
             install: function (obj, plugin, project, options) {
                 // Copy the plugin's files into the www directory.
                 var moduleSource = path.resolve(plugin.dir, obj.src);
    -            var moduleName = plugin.id + '.' + (obj.name || 
path.parse(obj.src).name);
    +            var moduleName = plugin.id + '.' + (obj.name || 
path.basename(obj.src, path.extname (obj.src)));
    --- End diff --
    
    Yup, these are the same, but `path.parse` is not available in Node v0.10


---
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