From 609bbfc24173fda12dcaba98e52b182a36d9d9d9 Mon Sep 17 00:00:00 2001 From: Balint Kodolanyi Date: Wed, 11 Feb 2026 11:38:23 +0100 Subject: [PATCH] npm version command added to README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 32428593..30b0da88 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,10 @@ npm run openapi ## build and generate new types npm run typegen && npm run build +## increment the version number in package.json +## to increment the minor or major version number instead, replace "patch" with "minor" or "major" in the below command +npm version patch --no-git-tag-version + ## commit your changes git commit -am 'chore(entity-client): update client with new spec' ```