@alextheman/utility 3.4.0 → 3.4.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 +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/utility",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "Helpful utility functions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,27 +17,27 @@
|
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "tsdown",
|
|
20
|
-
"change-major": "
|
|
21
|
-
"change-minor": "
|
|
22
|
-
"change-patch": "
|
|
23
|
-
"create-local-package": "
|
|
24
|
-
"format": "
|
|
20
|
+
"change-major": "pnpm version major -m \"Change version number to v%s\"",
|
|
21
|
+
"change-minor": "pnpm version minor -m \"Change version number to v%s\"",
|
|
22
|
+
"change-patch": "pnpm version patch -m \"Change version number to v%s\"",
|
|
23
|
+
"create-local-package": "pnpm run build && rm -f alextheman-utility-*.tgz && pnpm pack",
|
|
24
|
+
"format": "pnpm run format-prettier && pnpm run format-eslint",
|
|
25
25
|
"format-eslint": "eslint --fix --suppress-all \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
|
|
26
|
-
"format-prettier": "
|
|
26
|
+
"format-prettier": "pnpm run format-prettier-typescript && pnpm run format-prettier-javascript",
|
|
27
27
|
"format-prettier-javascript": "prettier --write \"./**/*.js\"",
|
|
28
28
|
"format-prettier-typescript": "prettier --write --parser typescript \"./**/*.ts\"",
|
|
29
|
-
"lint": "
|
|
29
|
+
"lint": "pnpm run lint-tsc && pnpm run lint-eslint && pnpm run lint-prettier",
|
|
30
30
|
"lint-eslint": "eslint \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
31
|
-
"lint-prettier": "
|
|
31
|
+
"lint-prettier": "pnpm run lint-prettier-typescript && pnpm run lint-prettier-javascript",
|
|
32
32
|
"lint-prettier-javascript": "prettier --check \"./**/*.js\"",
|
|
33
33
|
"lint-prettier-typescript": "prettier --check --parser typescript \"./**/*.ts\"",
|
|
34
34
|
"lint-tsc": "tsc --noEmit",
|
|
35
35
|
"prepare": "husky",
|
|
36
36
|
"test": "vitest run",
|
|
37
37
|
"test-watch": "vitest",
|
|
38
|
-
"update-dependencies": "bash -c '
|
|
39
|
-
"use-live-eslint-plugin": "
|
|
40
|
-
"use-local-eslint-plugin": "npm --prefix ../eslint-plugin run create-local-package &&
|
|
38
|
+
"update-dependencies": "bash -c 'pnpx npm-check-updates -u \"$@\" && pnpm install --no-frozen-lockfile' --",
|
|
39
|
+
"use-live-eslint-plugin": "pnpm uninstall @alextheman/eslint-plugin && pnpm install --save-dev @alextheman/eslint-plugin",
|
|
40
|
+
"use-local-eslint-plugin": "npm --prefix ../eslint-plugin run create-local-package && pnpm uninstall @alextheman/eslint-plugin && pnpm install --save-dev ../eslint-plugin/alextheman-eslint-plugin-*.tgz"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"zod": "^4.1.13"
|
|
@@ -54,5 +54,6 @@
|
|
|
54
54
|
"typescript": "^5.9.3",
|
|
55
55
|
"vite-tsconfig-paths": "^5.1.4",
|
|
56
56
|
"vitest": "^4.0.14"
|
|
57
|
-
}
|
|
57
|
+
},
|
|
58
|
+
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
|
|
58
59
|
}
|