@react-hive/honey-utils 3.23.0 → 3.24.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.
- package/README.md +1 -0
- package/dist/README.md +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.dev.cjs +55 -0
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/string/index.d.ts +1 -0
- package/dist/string/split-map-join.d.ts +34 -0
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-hive/honey-utils",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "A lightweight TypeScript utility library providing a collection of helper functions for common programming tasks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"utils",
|
|
@@ -24,10 +24,6 @@
|
|
|
24
24
|
},
|
|
25
25
|
"author": "Mike Aliinyk <m.aliynik@gmail.com>",
|
|
26
26
|
"license": "MIT",
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "webpack --config webpack.config.mjs",
|
|
29
|
-
"test": "jest --collect-coverage"
|
|
30
|
-
},
|
|
31
27
|
"type": "module",
|
|
32
28
|
"main": "dist/index.cjs",
|
|
33
29
|
"module": "dist/index.mjs",
|
|
@@ -67,5 +63,10 @@
|
|
|
67
63
|
"moduleNameMapper": {
|
|
68
64
|
"^~/(.*)$": "<rootDir>/src/$1"
|
|
69
65
|
}
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"clean": "rm -rf dist coverage",
|
|
69
|
+
"build": "webpack --config webpack.config.mjs",
|
|
70
|
+
"test": "jest --coverage"
|
|
70
71
|
}
|
|
71
|
-
}
|
|
72
|
+
}
|