@veritree/ui 0.91.6 → 0.91.7

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/package.json +4 -2
  2. package/readme.MD +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/ui",
3
- "version": "0.91.6",
3
+ "version": "0.91.7",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -13,7 +13,9 @@
13
13
  "test": "vitest",
14
14
  "coverage": "vitest run --coverage",
15
15
  "release": "np --no-tests",
16
- "release-any-branch": "np --no-tests --no-2fa --any-branch"
16
+ "release-any-branch": "np --no-tests --no-2fa --any-branch",
17
+ "release-with-git-tag": "yarn publish && yarn tag-and-push",
18
+ "tag-and-push": "git tag v$(node -p \"require('./package.json').version\") -m 'Release version $(node -p \"require('./package.json').version\")' && git push origin v$(node -p \"require('./package.json').version\")"
17
19
  },
18
20
  "dependencies": {
19
21
  "@floating-ui/dom": "^1.6.12",
package/readme.MD CHANGED
@@ -1,4 +1,4 @@
1
1
  # Deploy/Release Notes:
2
2
 
3
- - It is recommended to use `yarn publish` for releasing new versions.
3
+ - It is recommended to use `release-with-git-tag` or `yarn publish` for releasing new versions.
4
4
  - Avoid using `yarn release` as it is deprecated and may not be supported in future versions.