@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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiger-common/core",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "TaiGer core package",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",