@tmsoft/webphone 1.1.9 → 1.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsoft/webphone",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
@@ -39,7 +39,8 @@
39
39
  "lint": "eslint . --fix",
40
40
  "format": "prettier --write src/",
41
41
  "publish:local": "npm publish --registry http://localhost:4873/",
42
- "publish:lib": "npm version patch && npm publish --access public"
42
+ "release:patch": "git add -A && npm version patch --no-git-tag-version && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"chore(release): v$VERSION\" && git tag v$VERSION && git push && git push --tags",
43
+ "release:patch:publish": "npm run release:patch && npm publish --access public"
43
44
  },
44
45
  "peerDependencies": {
45
46
  "@vueuse/core": "^13.5.0",