@jdsalasc/solvejs 1.5.2 → 1.6.0

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 (1) hide show
  1. package/package.json +13 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdsalasc/solvejs",
3
- "version": "1.5.2",
3
+ "version": "1.6.0",
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",
@@ -24,20 +24,20 @@
24
24
  "build:esm": "tsc -p tsconfig.esm.json",
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
- "test": "npm run build && node --test test/*.test.mjs",
27
+ "test": "node --test test/*.test.mjs",
28
28
  "lint": "tsc -p tsconfig.esm.json --noEmit"
29
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
- },
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
  },