@ztimson/utils 0.17.0 → 0.17.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/README.md +3 -3
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Javascript/Typescript Utilities
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
<div>
|
|
23
|
-
<a href="https://
|
|
23
|
+
<a href="https://utils.docs.zakscode.com" target="_blank">Documentation</a>
|
|
24
24
|
• <a href="https://git.zakscode.com/ztimson/utils/releases" target="_blank">Release Notes</a>
|
|
25
25
|
• <a href="https://git.zakscode.com/ztimson/utils/issues/new?template=.github%2fissue_template%2fbug.md" target="_blank">Report a Bug</a>
|
|
26
26
|
• <a href="https://git.zakscode.com/ztimson/utils/issues/new?template=.github%2fissue_template%2fenhancement.md" target="_blank">Request a Feature</a>
|
|
@@ -36,7 +36,7 @@ Javascript/Typescript Utilities
|
|
|
36
36
|
- [Setup](#setup)
|
|
37
37
|
- [Production](#production)
|
|
38
38
|
- [Development](#development)
|
|
39
|
-
- [Documentation](https://
|
|
39
|
+
- [Documentation](https://utils.docs.zakscode.com/)
|
|
40
40
|
- [License](#license)
|
|
41
41
|
|
|
42
42
|
## About
|
|
@@ -82,7 +82,7 @@ A collection of utilities to make life a little easier
|
|
|
82
82
|
|
|
83
83
|
## Documentation
|
|
84
84
|
|
|
85
|
-
[Available Here](https://
|
|
85
|
+
[Available Here](https://utils.docs.zakscode.com/)
|
|
86
86
|
|
|
87
87
|
## License
|
|
88
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ztimson/utils",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Utility library",
|
|
5
5
|
"author": "Zak Timson",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "npx tsc && npx vite build",
|
|
24
|
-
"docs": "typedoc --
|
|
24
|
+
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
|
|
25
25
|
"test": "npx jest",
|
|
26
26
|
"test:coverage": "npx jest --coverage",
|
|
27
27
|
"watch": "npx vite build --watch"
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"jest-junit": "^16.0.0",
|
|
33
33
|
"ts-jest": "^29.1.2",
|
|
34
34
|
"typedoc": "^0.26.7",
|
|
35
|
-
"typedoc-plugin-markdown": "^4.2.7",
|
|
36
35
|
"typescript": "^5.3.3",
|
|
37
36
|
"vite": "^5.0.12",
|
|
38
37
|
"vite-plugin-dts": "^3.7.2"
|