magic-utils-yonava 1.0.7 → 1.0.8
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/dist/index.d.ts +19 -19
- package/dist/index.js +19 -19
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./utils/ctx";
|
|
2
|
-
export * from "./utils/deepDelta";
|
|
3
|
-
export * from "./utils/fracDecConverter";
|
|
4
|
-
export * from "./utils/maybeGetter";
|
|
5
|
-
export * from "./utils/clone";
|
|
6
|
-
export * from "./utils/colors";
|
|
7
|
-
export * from "./utils/debounce";
|
|
8
|
-
export * from "./utils/debugging";
|
|
9
|
-
export * from "./utils/deepMerge";
|
|
10
|
-
export * from "./utils/fps";
|
|
11
|
-
export * from "./utils/hashing";
|
|
12
|
-
export * from "./utils/id";
|
|
13
|
-
export * from "./utils/localStorage";
|
|
14
|
-
export * from "./utils/math";
|
|
15
|
-
export * from "./utils/mouse";
|
|
16
|
-
export * from "./utils/random";
|
|
17
|
-
export * from "./utils/sets";
|
|
18
|
-
export * from "./utils/string";
|
|
19
|
-
export * from "./utils/types";
|
|
1
|
+
export * from "./utils/ctx/index.js";
|
|
2
|
+
export * from "./utils/deepDelta/index.js";
|
|
3
|
+
export * from "./utils/fracDecConverter/index.js";
|
|
4
|
+
export * from "./utils/maybeGetter/index.js";
|
|
5
|
+
export * from "./utils/clone.js";
|
|
6
|
+
export * from "./utils/colors.js";
|
|
7
|
+
export * from "./utils/debounce.js";
|
|
8
|
+
export * from "./utils/debugging.js";
|
|
9
|
+
export * from "./utils/deepMerge.js";
|
|
10
|
+
export * from "./utils/fps.js";
|
|
11
|
+
export * from "./utils/hashing.js";
|
|
12
|
+
export * from "./utils/id.js";
|
|
13
|
+
export * from "./utils/localStorage.js";
|
|
14
|
+
export * from "./utils/math.js";
|
|
15
|
+
export * from "./utils/mouse.js";
|
|
16
|
+
export * from "./utils/random.js";
|
|
17
|
+
export * from "./utils/sets.js";
|
|
18
|
+
export * from "./utils/string.js";
|
|
19
|
+
export * from "./utils/types.js";
|
package/dist/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./utils/ctx";
|
|
2
|
-
export * from "./utils/deepDelta";
|
|
3
|
-
export * from "./utils/fracDecConverter";
|
|
4
|
-
export * from "./utils/maybeGetter";
|
|
5
|
-
export * from "./utils/clone";
|
|
6
|
-
export * from "./utils/colors";
|
|
7
|
-
export * from "./utils/debounce";
|
|
8
|
-
export * from "./utils/debugging";
|
|
9
|
-
export * from "./utils/deepMerge";
|
|
10
|
-
export * from "./utils/fps";
|
|
11
|
-
export * from "./utils/hashing";
|
|
12
|
-
export * from "./utils/id";
|
|
13
|
-
export * from "./utils/localStorage";
|
|
14
|
-
export * from "./utils/math";
|
|
15
|
-
export * from "./utils/mouse";
|
|
16
|
-
export * from "./utils/random";
|
|
17
|
-
export * from "./utils/sets";
|
|
18
|
-
export * from "./utils/string";
|
|
19
|
-
export * from "./utils/types";
|
|
1
|
+
export * from "./utils/ctx/index.js";
|
|
2
|
+
export * from "./utils/deepDelta/index.js";
|
|
3
|
+
export * from "./utils/fracDecConverter/index.js";
|
|
4
|
+
export * from "./utils/maybeGetter/index.js";
|
|
5
|
+
export * from "./utils/clone.js";
|
|
6
|
+
export * from "./utils/colors.js";
|
|
7
|
+
export * from "./utils/debounce.js";
|
|
8
|
+
export * from "./utils/debugging.js";
|
|
9
|
+
export * from "./utils/deepMerge.js";
|
|
10
|
+
export * from "./utils/fps.js";
|
|
11
|
+
export * from "./utils/hashing.js";
|
|
12
|
+
export * from "./utils/id.js";
|
|
13
|
+
export * from "./utils/localStorage.js";
|
|
14
|
+
export * from "./utils/math.js";
|
|
15
|
+
export * from "./utils/mouse.js";
|
|
16
|
+
export * from "./utils/random.js";
|
|
17
|
+
export * from "./utils/sets.js";
|
|
18
|
+
export * from "./utils/string.js";
|
|
19
|
+
export * from "./utils/types.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magic-utils-yonava",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
},
|
|
117
117
|
"scripts": {
|
|
118
118
|
"build:types": "tsc -b tsconfig.json",
|
|
119
|
+
"republish": "rm -rf dist && npm run build:types && npm publish",
|
|
119
120
|
"test": "vitest"
|
|
120
121
|
},
|
|
121
122
|
"peerDependencies": {
|