Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 55F261062F for ; Sun, 9 Mar 2014 14:17:45 +0000 (UTC) Received: (qmail 47750 invoked by uid 500); 9 Mar 2014 14:17:44 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 47671 invoked by uid 500); 9 Mar 2014 14:17:43 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 47664 invoked by uid 99); 9 Mar 2014 14:17:42 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Mar 2014 14:17:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id C0B7793B613; Sun, 9 Mar 2014 14:17:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: csantanapr@apache.org To: commits@cordova.apache.org Message-Id: <1c1c550a70e04c759b28339248dbee20@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: CB-6156 Enable CLI and Plugman with npm shrinkwrap Date: Sun, 9 Mar 2014 14:17:41 +0000 (UTC) Repository: cordova-coho Updated Branches: refs/heads/master 926717fc5 -> b68aa3c3b CB-6156 Enable CLI and Plugman with npm shrinkwrap Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/b68aa3c3 Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/b68aa3c3 Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/b68aa3c3 Branch: refs/heads/master Commit: b68aa3c3b91173acf3afba2acf72f4c53a9e0bf6 Parents: 926717f Author: Carlos Santana Authored: Sun Mar 9 10:12:54 2014 -0400 Committer: Carlos Santana Committed: Sun Mar 9 10:16:33 2014 -0400 ---------------------------------------------------------------------- docs/tools-release-process.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/b68aa3c3/docs/tools-release-process.md ---------------------------------------------------------------------- diff --git a/docs/tools-release-process.md b/docs/tools-release-process.md index 5f9b96b..e4a6c07 100644 --- a/docs/tools-release-process.md +++ b/docs/tools-release-process.md @@ -92,7 +92,11 @@ Update the version of plugman that CLI depends on: v="$(grep '"version"' cordova-plugman/package.json | cut -d'"' -f4)" sed -i '' -E 's/"plugman":.*/"plugman": "'$v'",/' cordova-cli/package.json -Commit these two changes together into one commit +Update CLI's npm-shrinkwrap.json with new version of plugman: + + (cd cordova-cli; npm shrinkwrap) + +Commit these three changes together into one commit for l in cordova-plugman cordova-cli; do ( cd $l; v="$(grep '"version"' package.json | cut -d'"' -f4)"; git commit -am "$JIRA Updated version and RELEASENOTES.md for release $v" ); done