@jdsalasc/solvejs 1.5.0 → 1.5.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.
- package/README.md +9 -3
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -8,9 +8,15 @@ Zero-dependency JavaScript and TypeScript utility suite for real production pain
|
|
|
8
8
|
|
|
9
9
|
Includes date, string, list, regex, constants, numbers, validators, object, and async utilities.
|
|
10
10
|
|
|
11
|
-
## When to use this package
|
|
12
|
-
|
|
13
|
-
Use it when your project needs multiple utility domains and you prefer one import surface over many package-level imports.
|
|
11
|
+
## When to use this package
|
|
12
|
+
|
|
13
|
+
Use it when your project needs multiple utility domains and you prefer one import surface over many package-level imports.
|
|
14
|
+
|
|
15
|
+
## Limitations and Constraints
|
|
16
|
+
|
|
17
|
+
- Utilities prioritize predictable defaults over framework-specific abstractions.
|
|
18
|
+
- Date and number helpers do not replace domain-specific finance/timezone libraries for regulated calculations.
|
|
19
|
+
- Import package-level modules directly when you need strict control over bundle boundaries.
|
|
14
20
|
|
|
15
21
|
## Install
|
|
16
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jdsalasc/solvejs",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Zero-dependency JavaScript/TypeScript utility library for production apps: date parsing, string cleanup, list transforms, validators, numbers, regex, constants, objects, and async control.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/rename-cjs.mjs",
|
|
26
26
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
27
27
|
"test": "npm run build && node --test test/*.test.mjs",
|
|
28
|
-
"lint": "
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@jdsalasc/solvejs-date": "1.4.1",
|
|
32
|
-
"@jdsalasc/solvejs-string": "1.4.1",
|
|
33
|
-
"@jdsalasc/solvejs-list": "1.4.1",
|
|
34
|
-
"@jdsalasc/solvejs-regex": "1.4.1",
|
|
35
|
-
"@jdsalasc/solvejs-constants": "1.4.1",
|
|
36
|
-
"@jdsalasc/solvejs-numbers": "1.4.1",
|
|
37
|
-
"@jdsalasc/solvejs-validators": "1.4.1",
|
|
38
|
-
"@jdsalasc/solvejs-objects": "1.4.1",
|
|
39
|
-
"@jdsalasc/solvejs-async": "1.5.0"
|
|
28
|
+
"lint": "tsc -p tsconfig.esm.json --noEmit"
|
|
40
29
|
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@jdsalasc/solvejs-date": "1.5.2",
|
|
32
|
+
"@jdsalasc/solvejs-string": "1.5.2",
|
|
33
|
+
"@jdsalasc/solvejs-list": "1.5.2",
|
|
34
|
+
"@jdsalasc/solvejs-regex": "1.5.2",
|
|
35
|
+
"@jdsalasc/solvejs-constants": "1.5.2",
|
|
36
|
+
"@jdsalasc/solvejs-numbers": "1.5.2",
|
|
37
|
+
"@jdsalasc/solvejs-validators": "1.5.2",
|
|
38
|
+
"@jdsalasc/solvejs-objects": "1.5.2",
|
|
39
|
+
"@jdsalasc/solvejs-async": "1.5.2"
|
|
40
|
+
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|