Repository: cordova-coho Updated Branches: refs/heads/master 4d9eda92d -> 90e43adbc
Added steps to update checked in node_modules Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/90e43adb Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/90e43adb Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/90e43adb Branch: refs/heads/master Commit: 90e43adbc9e8acc42f89fc8e536357339d402518 Parents: 4d9eda9 Author: Steve Gill <[email protected]> Authored: Wed Feb 24 12:58:49 2016 -0800 Committer: Steve Gill <[email protected]> Committed: Wed Feb 24 12:58:49 2016 -0800 ---------------------------------------------------------------------- docs/platforms-release-process.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/90e43adb/docs/platforms-release-process.md ---------------------------------------------------------------------- diff --git a/docs/platforms-release-process.md b/docs/platforms-release-process.md index 54be1b7..e970a6f 100644 --- a/docs/platforms-release-process.md +++ b/docs/platforms-release-process.md @@ -65,6 +65,14 @@ See if any dependencies are outdated Update them in each project's `package.json` file. Make sure to run through the test section below for compatability issues. The `--depth=0` prevents from listing dependencies of dependencies. +Checkin updated modules + + rm -rf node_modules + npm install --production (skips devDependencies) + git add node_modules/* (checkin all modules needed for platform add git url) + git commit -m "$JIRA Updated checked-in node_modules" + npm install (Re-add devDependencies for ability to run tests locally) + ## Release Check Ensure license headers are present everywhere. For reference, see this [background](http://www.apache.org/legal/src-headers.html). Expect some noise in the output, for example some files from test fixtures will show up. @@ -232,7 +240,7 @@ Find your release here: https://dist.apache.org/repos/dist/dev/cordova/ ## Documentation To Update For your platform: - 1. Ensure the [Upgrade Guide](http://docs.phonegap.com/en/edge/guide_upgrading_index.md.html) for your platform is up-to-date + 1. Ensure the [Upgrade Guide](http://cordova.apache.org/docs/en/latest/guide/platforms/android/upgrade.html) for your platform is up-to-date 2. Ensure the other guides listed in the sidebar are up-to-date for your platform ## Prepare Blog Post --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
