Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 029AD200A01 for ; Tue, 3 May 2016 18:53:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 025EC1609F4; Tue, 3 May 2016 18:53:15 +0200 (CEST) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3D2D71609F7 for ; Tue, 3 May 2016 18:53:14 +0200 (CEST) Received: (qmail 8486 invoked by uid 500); 3 May 2016 16:53:13 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 8236 invoked by uid 99); 3 May 2016 16:53:13 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 May 2016 16:53:13 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EA5D02C1F64 for ; Tue, 3 May 2016 16:53:12 +0000 (UTC) Date: Tue, 3 May 2016 16:53:12 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-11194) Improve cordova load time MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 03 May 2016 16:53:15 -0000 [ https://issues.apache.org/jira/browse/CB-11194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15269058#comment-15269058 ] ASF GitHub Bot commented on CB-11194: ------------------------------------- Github user jasongin commented on a diff in the pull request: https://github.com/apache/cordova-lib/pull/434#discussion_r61915398 --- Diff: cordova-lib/src/platforms/PlatformApiPoly.js --- @@ -474,7 +473,12 @@ function getCreateArgs(destinationDir, projectConfig, options) { // CB-6992 it is necessary to normalize characters // because node and shell scripts handles unicode symbols differently // We need to normalize the name to NFD form since iOS uses NFD unicode form - args.push(platformName == 'ios' ? unorm.nfd(projectConfig.name()) : projectConfig.name()); + var name = projectConfig.name(); + if (platformName == 'ios') { + var unorm = require('unorm'); + name = unorm.nfd(projectConfig.name()); --- End diff -- `name = unorm.nfd(name);` > Improve cordova load time > ------------------------- > > Key: CB-11194 > URL: https://issues.apache.org/jira/browse/CB-11194 > Project: Apache Cordova > Issue Type: Sub-task > Components: Android, CordovaLib > Reporter: Nikhil Khandelwal > > We can delay load some of our dependencies to improve our load time. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org