Github user sgrebnov commented on a diff in the pull request:
https://github.com/apache/cordova-cli/pull/181#discussion_r14055705
--- Diff: src/cli.js ---
@@ -165,6 +165,20 @@ function cli(inputArgs) {
throw new CordovaError(msg)
}
+ // CB-6976 Windows Universal Apps. Allow mixing windows and
windows8 aliases
+ opts.platforms = opts.platforms.map(function(platform) {
+ // allow using old windows8 alias for new unified windows
platform
+ if (platform == 'windows8' &&
require('fs').existsSync('platforms/windows')) {
--- End diff --
Will be updated, thx @kamrik!
---
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 [email protected] or file a JIRA ticket
with INFRA.
---