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.
- package/RELEASE_GUIDE.md +14 -0
- 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
|