ff-automationv2 2.1.0 → 2.1.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/RELEASE_GUIDE.md +14 -0
  2. package/package.json +1 -1
package/RELEASE_GUIDE.md CHANGED
@@ -1,6 +1,20 @@
1
+ # 1️⃣ Switch to your feature branch
1
2
  git checkout feature/your-feature-name
3
+
4
+ # 2️⃣ Pull latest changes (VERY IMPORTANT)
2
5
  git pull --rebase
6
+
7
+ # 3️⃣ Make your code changes
8
+
9
+ # 4️⃣ Stage and commit your changes
3
10
  git add .
4
11
  git commit -m "feat: new changes"
12
+
13
+ # 5️⃣ Bump beta version (creates commit + tag automatically)
5
14
  npm version prerelease --preid=beta
15
+
16
+ # 6️⃣ Push commit + version tag
6
17
  git push --follow-tags
18
+
19
+ # 7️⃣ Publish as beta
20
+ npm publish --tag beta
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ff-automationv2",
3
- "version": "2.1.0",
3
+ "version": "2.1.1-beta.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "This lib is used to automate the manual testcase",