react-util-tools 1.0.7 → 1.0.12
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 +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-util-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "A collection of useful utilities: throttle, debounce, date formatting, device detection, money formatting, decimal calculations and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
19
19
|
"dev": "tsup src/index.ts --watch",
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
|
-
"release:patch": "npm version patch && git push --follow-tags && npm publish",
|
|
22
|
-
"release:minor": "npm version minor && git push --follow-tags && npm publish",
|
|
23
|
-
"release:major": "npm version major && git push --follow-tags && npm publish",
|
|
21
|
+
"release:patch": "npm version patch --no-git-tag-version && git add . && git commit -m 'chore: release v%s' && git tag v$(node -p \"require('./package.json').version\") && git push --follow-tags && npm publish",
|
|
22
|
+
"release:minor": "npm version minor --no-git-tag-version && git add . && git commit -m 'chore: release v%s' && git tag v$(node -p \"require('./package.json').version\") && git push --follow-tags && npm publish",
|
|
23
|
+
"release:major": "npm version major --no-git-tag-version && git add . && git commit -m 'chore: release v%s' && git tag v$(node -p \"require('./package.json').version\") && git push --follow-tags && npm publish",
|
|
24
24
|
"release": "npm run release:patch"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|