@naman_deep_singh/utils 2.6.0 → 2.6.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 +1 -1
- package/dist/cjs/index.js +2 -0
- package/dist/esm/index.js +2 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
```bash
|
|
2
2
|
@naman_deep_singh/utils
|
|
3
3
|
|
|
4
|
-
**Version: 2.6.
|
|
4
|
+
**Version: 2.6.1**
|
|
5
5
|
|
|
6
6
|
Universal JavaScript prototype extensions for common development utilities. Works in both Node.js and browser environments with 70+ utility methods, plus timeout management, connection pooling, and compression utilities.
|
|
7
7
|
|
package/dist/cjs/index.js
CHANGED
|
@@ -27,5 +27,7 @@ __exportStar(require("./utils/index.js"), exports);
|
|
|
27
27
|
// Initialization & setup
|
|
28
28
|
__exportStar(require("./init/index.js"), exports);
|
|
29
29
|
__exportStar(require("./extensions/index.js"), exports);
|
|
30
|
+
// Error handling
|
|
31
|
+
__exportStar(require("./errors/index.js"), exports);
|
|
30
32
|
// Types
|
|
31
33
|
__exportStar(require("./types/index.js"), exports);
|
package/dist/esm/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naman_deep_singh/utils",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Universal JavaScript prototype extensions for common development utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
|
@@ -53,6 +53,11 @@
|
|
|
53
53
|
"import": "./dist/esm/extensions/index.js",
|
|
54
54
|
"require": "./dist/cjs/extensions/index.js"
|
|
55
55
|
},
|
|
56
|
+
"./errors": {
|
|
57
|
+
"types": "./dist/types/errors/index.d.ts",
|
|
58
|
+
"import": "./dist/esm/errors/index.js",
|
|
59
|
+
"require": "./dist/cjs/errors/index.js"
|
|
60
|
+
},
|
|
56
61
|
"./types": {
|
|
57
62
|
"types": "./dist/types/types/index.d.ts",
|
|
58
63
|
"import": "./dist/esm/types/index.js",
|