@wwawing/engine 4.1.0-save-bug-fix.based-on.3.12.18.p.2 → 4.1.0-save-bug-fix.based-on.3.12.18.p.3
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/wwa.js +3 -3
- package/lib/wwa_util.d.ts +2 -2
- package/package.json +11 -11
package/lib/wwa_util.d.ts
CHANGED
|
@@ -12,6 +12,6 @@ export declare const reverse: (str: string) => string;
|
|
|
12
12
|
export declare function assertNumber(value: unknown, varName: string): value is number;
|
|
13
13
|
export declare function assertString(value: unknown, varName: string): value is string;
|
|
14
14
|
export declare function formatUserVarForDisplay(value: UserVar, trimming?: boolean, depth?: number): string;
|
|
15
|
-
export declare function getItem(x: UserVarMap | Array<any>, key:
|
|
16
|
-
export declare function setItem(x: UserVarMap | Array<any>, key:
|
|
15
|
+
export declare function getItem(x: UserVarMap | Array<any>, key: unknown): any;
|
|
16
|
+
export declare function setItem(x: UserVarMap | Array<any>, key: unknown, value: UserVar): void;
|
|
17
17
|
export declare const assignmentBlockProperties: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwawing/engine",
|
|
3
|
-
"version": "4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
3
|
+
"version": "4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
4
4
|
"description": "World Wide Adventure: an RPG Engine.",
|
|
5
5
|
"main": "./lib/wwa.js",
|
|
6
6
|
"files": [
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"@types/pug": "^2.0.6",
|
|
50
50
|
"@types/terser-webpack-plugin": "^5.2.0",
|
|
51
51
|
"@types/webpack": "^5.28.0",
|
|
52
|
-
"@wwawing/assets": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
53
|
-
"@wwawing/common-interface": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
54
|
-
"@wwawing/debug-server": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
55
|
-
"@wwawing/event-emitter": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
56
|
-
"@wwawing/loader": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
57
|
-
"@wwawing/page-generator": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
58
|
-
"@wwawing/styles": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
59
|
-
"@wwawing/util": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
60
|
-
"@wwawing/virtual-pad": "^4.1.0-save-bug-fix.based-on.3.12.18.p.
|
|
52
|
+
"@wwawing/assets": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
53
|
+
"@wwawing/common-interface": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
54
|
+
"@wwawing/debug-server": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
55
|
+
"@wwawing/event-emitter": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
56
|
+
"@wwawing/loader": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
57
|
+
"@wwawing/page-generator": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
58
|
+
"@wwawing/styles": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
59
|
+
"@wwawing/util": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
60
|
+
"@wwawing/virtual-pad": "^4.1.0-save-bug-fix.based-on.3.12.18.p.3",
|
|
61
61
|
"crypto-js": "^4.1.1",
|
|
62
62
|
"flatted": "^3.3.3",
|
|
63
63
|
"jest": "^29.5.0",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"node": ">=22",
|
|
82
82
|
"npm": ">=10"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "aebc79fd0218e76231bec44402f6d91a0d59ba0e"
|
|
85
85
|
}
|