@taiger-common/core 1.0.3 → 1.0.4
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/README.md +15 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
npm publish package commands:
|
|
2
|
+
|
|
3
|
+
# Stage, commit, and push changes
|
|
4
|
+
git add .
|
|
5
|
+
git commit -m "fix: your_commit"
|
|
6
|
+
git push origin main
|
|
7
|
+
|
|
8
|
+
# Bump version
|
|
9
|
+
npm version patch # or minor/major
|
|
10
|
+
|
|
11
|
+
# Push tags
|
|
12
|
+
git push origin main --tags
|
|
13
|
+
|
|
14
|
+
# Publish to npm
|
|
15
|
+
npm publish
|