From 452b5f342c5402754503b1bcc0aa7a4f6c39efbd Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 13 Jul 2018 14:17:31 -0500 Subject: [PATCH] add note about multiple calls to validateRelease --- docs/development/releasing.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/development/releasing.md b/docs/development/releasing.md index f454b6b961c7..dfb1bdbd63ec 100644 --- a/docs/development/releasing.md +++ b/docs/development/releasing.md @@ -65,7 +65,7 @@ npm run prepare-release -- minor ``` ### Patch version change ```sh -npm run prepare-release -- patch +npm run prepare-release -- patch --stable ``` ### Beta version change ```sh @@ -204,6 +204,10 @@ release notes. ```sh $ npm run release -- --validateRelease ``` +Note, if you need to run `--validateRelease` more than once to check the assets, +run it as above the first time, then `node ./script/release.js --validateRelase` +for subsequent calls so that you don't have to rebuild each time you want to +check the assets. ## Publish the release