@alextheman/utility 4.4.0 → 4.4.2

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/README.md +5 -5
  2. package/package.json +10 -8
package/README.md CHANGED
@@ -4,9 +4,9 @@
4
4
  ![npm downloads](https://img.shields.io/npm/dm/@alextheman/utility)
5
5
  ![npm license](https://img.shields.io/npm/l/@alextheman/utility)
6
6
 
7
- [![CI](https://github.com/AlexMan123456/utility/actions/workflows/ci.yml/badge.svg)](https://github.com/AlexMan123456/utility/actions/workflows/ci.yml)
8
- [![Publish to NPM Registry](https://github.com/AlexMan123456/utility/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/AlexMan123456/utility/actions/workflows/npm-publish.yml)
9
- [![Publish to Netlify](https://github.com/AlexMan123456/utility/actions/workflows/netlify-docs-publish.yml/badge.svg)](https://github.com/AlexMan123456/utility/actions/workflows/netlify-docs-publish.yml)
7
+ [![CI](https://github.com/alextheman231/utility/actions/workflows/ci.yml/badge.svg)](https://github.com/alextheman231/utility/actions/workflows/ci.yml)
8
+ [![Publish to NPM Registry and GitHub Releases](https://github.com/alextheman231/utility/actions/workflows/publish.yml/badge.svg)](https://github.com/alextheman231/utility/actions/workflows/publish.yml)
9
+ [![Publish to Netlify](https://github.com/alextheman231/utility/actions/workflows/netlify-docs-publish.yml/badge.svg)](https://github.com/alextheman231/utility/actions/workflows/netlify-docs-publish.yml)
10
10
 
11
11
  [![Netlify Status](https://api.netlify.com/api/v1/badges/74fd3eaf-3002-472b-ae5e-2bd0ab984b9e/deploy-status)](https://app.netlify.com/projects/alextheman-utility-docs/deploys)
12
12
 
@@ -38,6 +38,6 @@ const myVariable: NonUndefined<string> = formatDateAndTime(new Date());
38
38
 
39
39
  ## Documentation
40
40
 
41
- You can find the relevant documentation of all features of the package in the [docs/features/markdown](https://github.com/AlexMan123456/utility/tree/main/docs/features/markdown) directory of the repository. The hosted documentation site can be found [here](https://alextheman-utility-docs.netlify.app/).
41
+ You can find the relevant documentation of all features of the package in the [docs/features/markdown](https://github.com/alextheman231/utility/tree/main/docs/features/markdown) directory of the repository. The hosted documentation site can be found [here](https://alextheman-utility-docs.netlify.app/).
42
42
 
43
- See the GitHub repository [here](https://github.com/AlexMan123456/utility).
43
+ See the GitHub repository [here](https://github.com/alextheman231/utility).
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@alextheman/utility",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "description": "Helpful utility functions.",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/AlexMan123456/utility.git"
7
+ "url": "git+https://github.com/alextheman231/utility.git"
8
8
  },
9
9
  "license": "MIT",
10
10
  "author": "alextheman",
@@ -16,19 +16,19 @@
16
16
  "dist"
17
17
  ],
18
18
  "dependencies": {
19
- "zod": "^4.3.4"
19
+ "zod": "^4.3.5"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@alextheman/eslint-plugin": "^5.4.2",
23
23
  "@types/node": "^25.0.3",
24
- "alex-c-line": "^1.15.0",
24
+ "alex-c-line": "^1.16.1",
25
25
  "dotenv-cli": "^11.0.0",
26
26
  "eslint": "^9.39.2",
27
27
  "globals": "^17.0.0",
28
28
  "husky": "^9.1.7",
29
29
  "jsdom": "^27.4.0",
30
30
  "prettier": "^3.7.4",
31
- "tsdown": "0.19.0-beta.1",
31
+ "tsdown": "^0.18.4",
32
32
  "typedoc": "^0.28.15",
33
33
  "typescript": "^5.9.3",
34
34
  "vite-tsconfig-paths": "^6.0.3",
@@ -46,16 +46,18 @@
46
46
  "create-release-note-patch": "git pull origin main && alex-c-line create-release-note patch",
47
47
  "format": "pnpm run format-prettier && pnpm run format-eslint",
48
48
  "format-eslint": "eslint --fix --suppress-all \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
49
- "format-prettier": "pnpm run format-prettier-typescript && pnpm run format-prettier-javascript",
49
+ "format-prettier": "pnpm run format-prettier-typescript && pnpm run format-prettier-javascript && pnpm run format-prettier-yml",
50
50
  "format-prettier-javascript": "prettier --write \"./**/*.js\"",
51
51
  "format-prettier-typescript": "prettier --write --parser typescript \"./**/*.ts\"",
52
+ "format-prettier-yml": "prettier --write \"./**/*.{yml,yaml}\"",
52
53
  "lint": "pnpm run lint-tsc && pnpm run lint-eslint && pnpm run lint-prettier",
53
54
  "lint-eslint": "eslint \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\"",
54
- "lint-prettier": "pnpm run lint-prettier-typescript && pnpm run lint-prettier-javascript",
55
+ "lint-prettier": "pnpm run lint-prettier-typescript && pnpm run lint-prettier-javascript && pnpm run lint-prettier-yml",
55
56
  "lint-prettier-javascript": "prettier --check \"./**/*.js\"",
56
57
  "lint-prettier-typescript": "prettier --check --parser typescript \"./**/*.ts\"",
58
+ "lint-prettier-yml": "prettier --check \"./**/*.{yml,yaml}\"",
57
59
  "lint-tsc": "tsc --noEmit",
58
- "pre-commit": "alex-c-line pre-commit",
60
+ "pre-commit": "alex-c-line pre-commit-2",
59
61
  "prepare-live-eslint-plugin": "pnpm uninstall @alextheman/eslint-plugin && pnpm install --save-dev @alextheman/eslint-plugin",
60
62
  "prepare-local-eslint-plugin": "dotenv -e .env -- sh -c 'ESLINT_PLUGIN_PATH=${LOCAL_ESLINT_PLUGIN_PATH:-../eslint-plugin}; pnpm --prefix \"$ESLINT_PLUGIN_PATH\" run build && pnpm uninstall @alextheman/eslint-plugin && pnpm install --save-dev file:\"$ESLINT_PLUGIN_PATH\"'",
61
63
  "test": "vitest run",