@alextheman/utility 3.10.0 → 3.10.1
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 +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/utility",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.1",
|
|
4
4
|
"description": "Helpful utility functions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@alextheman/eslint-plugin": "^4.8.6",
|
|
23
23
|
"@types/node": "^25.0.1",
|
|
24
|
+
"alex-c-line": "^1.8.0",
|
|
24
25
|
"dotenv-cli": "^11.0.0",
|
|
25
26
|
"eslint": "^9.39.1",
|
|
26
27
|
"globals": "^16.5.0",
|
|
@@ -34,10 +35,10 @@
|
|
|
34
35
|
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"build": "tsdown",
|
|
37
|
-
"change-major": "pnpm version major -m \"Change version number to v%s\"",
|
|
38
|
-
"change-minor": "pnpm version minor -m \"Change version number to v%s\"",
|
|
39
|
-
"change-patch": "pnpm version patch -m \"Change version number to v%s\"",
|
|
40
38
|
"create-local-package": "pnpm run build && rm -f alextheman-utility-*.tgz && pnpm pack",
|
|
39
|
+
"create-release-note-major": "git pull origin main && alex-c-line create-release-note major",
|
|
40
|
+
"create-release-note-minor": "git pull origin main && alex-c-line create-release-note minor",
|
|
41
|
+
"create-release-note-patch": "git pull origin main && alex-c-line create-release-note patch",
|
|
41
42
|
"format": "pnpm run format-prettier && pnpm run format-eslint",
|
|
42
43
|
"format-eslint": "eslint --fix --suppress-all \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
|
|
43
44
|
"format-prettier": "pnpm run format-prettier-typescript && pnpm run format-prettier-javascript",
|