From a934d75b813b892200d0c3d8ae3060be21228b69 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 15 Jun 2017 14:39:54 -0400 Subject: [PATCH] Run imagery before translations (imagery is now translated) --- RELEASING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index b19c4ccef..543ba1694 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -14,13 +14,13 @@ on the iD project, and then create this file with contents like
 ### Update master branch
 ```bash
 $  git checkout master
-$  npm run translations
-$  git add . && git commit -m 'npm run translations'
 $  rm -rf node_modules/editor-layer-index/
 $  npm install
 $  npm run imagery
 $  npm run all
 $  git add . && git commit -m 'npm run imagery'
+$  npm run translations
+$  git add . && git commit -m 'npm run translations'
 $  Update `CHANGELOG.md`
 $  Update version number in `modules/core/context.js`, `package.json`
 $  git add . && git commit -m 'A.B.C'