From ceff4e7641a4a001295afdda99724e21b45ffdc0 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sun, 3 Nov 2024 15:58:03 +0100 Subject: [PATCH] Add a MAINTENANCE.md doc --- MAINTENANCE.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 MAINTENANCE.md diff --git a/MAINTENANCE.md b/MAINTENANCE.md new file mode 100644 index 00000000..a7cdd95d --- /dev/null +++ b/MAINTENANCE.md @@ -0,0 +1,25 @@ +# update dependencies + + npm update + npm outdated + +If new version exist put '*' in `package.json` and run again `npm update` + +- new commit with dependency updates + +# new release + + - run - npm version patch -m "prepare release %s" +or + - run - npm version minor -m "prepare release %s" + + - push commit + + - checkout release/vX + - merge master and push + - run + npm update + npm install + npm prune --production + - commit and push "update dependency after merge from master" + - git tag and git push --tags