@gunshi/shared 0.27.3 → 0.27.4
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/lib/index.d.ts +1 -3
- package/package.json +3 -3
package/lib/index.d.ts
CHANGED
|
@@ -1044,9 +1044,7 @@ declare function log(...args: unknown[]): void;
|
|
|
1044
1044
|
* @param ignores - Properties to ignore during freezing
|
|
1045
1045
|
* @returns A frozen object
|
|
1046
1046
|
*/
|
|
1047
|
-
declare function deepFreeze<T extends Record<string, any>>(
|
|
1048
|
-
// eslint-disable-line @typescript-eslint/no-explicit-any -- NOTE(kazupon): generic type for deepFreeze
|
|
1049
|
-
obj: T, ignores?: string[]): Readonly<T>;
|
|
1047
|
+
declare function deepFreeze<T extends Record<string, any>>(obj: T, ignores?: string[]): Readonly<T>;
|
|
1050
1048
|
//#endregion
|
|
1051
1049
|
//#region src/constants.d.ts
|
|
1052
1050
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gunshi/shared",
|
|
3
3
|
"description": "shared utils for gunshi",
|
|
4
|
-
"version": "0.27.
|
|
4
|
+
"version": "0.27.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "kazuya kawaguchi",
|
|
7
7
|
"email": "kawakazu80@gmail.com"
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"jsr-exports-lint": "^0.4.1",
|
|
56
56
|
"publint": "^0.3.16",
|
|
57
57
|
"tsdown": "0.15.12",
|
|
58
|
-
"@gunshi/resources": "0.27.
|
|
59
|
-
"gunshi": "0.27.
|
|
58
|
+
"@gunshi/resources": "0.27.4",
|
|
59
|
+
"gunshi": "0.27.4"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsdown",
|