You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by cs...@apache.org on 2014/03/09 15:17:41 UTC

git commit: CB-6156 Enable CLI and Plugman with npm shrinkwrap

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 <cs...@gmail.com>
Authored: Sun Mar 9 10:12:54 2014 -0400
Committer: Carlos Santana <cs...@gmail.com>
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