@ives_xxz/framework 1.0.2 → 1.0.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.
Files changed (88) hide show
  1. package/FW.d.ts +39 -24
  2. package/FW.d.ts.meta +5 -5
  3. package/Framework.ts.meta +9 -9
  4. package/README.md.meta +5 -5
  5. package/animation/FWAnimation.ts.meta +9 -9
  6. package/animation/FWSkeleton.ts.meta +9 -9
  7. package/animation/FWTween.ts.meta +9 -9
  8. package/animation.meta +12 -12
  9. package/component/FWVirtualViewComponent.ts.meta +9 -9
  10. package/component.meta +12 -12
  11. package/config/FWAssetConfig.ts.meta +9 -9
  12. package/config/FWSystemConfig.ts +10 -0
  13. package/config/FWSystemConfig.ts.meta +10 -0
  14. package/config.meta +12 -12
  15. package/controller/FWLayerController.ts.meta +9 -9
  16. package/controller.meta +12 -12
  17. package/data/FWData.ts.meta +9 -9
  18. package/data.meta +12 -12
  19. package/define/FWEventDefine.ts.meta +9 -9
  20. package/define/FWSystemDefine.ts.meta +9 -9
  21. package/define.meta +12 -12
  22. package/entry/FWEntry.ts.meta +9 -9
  23. package/entry.meta +12 -12
  24. package/expand/FWCocosExpand.ts.meta +9 -9
  25. package/expand/FWDecorator.ts.meta +9 -9
  26. package/expand/FWRollingViewNesting.ts.meta +9 -9
  27. package/expand/FWTweenExpand.ts.meta +9 -9
  28. package/expand.meta +12 -12
  29. package/item/FWVirtualListItem.ts.meta +9 -9
  30. package/item.meta +12 -12
  31. package/language/FWLanguage.ts.meta +9 -9
  32. package/language/FWLanguageLabelLocalize.ts.meta +9 -9
  33. package/language/FWLanguageSkeletonLocalize.ts.meta +9 -9
  34. package/language/FWLanguageSpriteLocalize.ts.meta +9 -9
  35. package/language.meta +12 -12
  36. package/layer/FWLayer.ts.meta +9 -9
  37. package/layer.meta +12 -12
  38. package/log/FWLog.ts.meta +9 -9
  39. package/log.meta +12 -12
  40. package/logic/FWLogic.ts.meta +9 -9
  41. package/logic.meta +12 -12
  42. package/machine/FWAnimationMachine.ts.meta +9 -9
  43. package/machine/FWStateMachine.ts.meta +9 -9
  44. package/machine.meta +12 -12
  45. package/manager/FWAnimationManager.ts.meta +9 -9
  46. package/manager/FWAssetManager.ts.meta +9 -9
  47. package/manager/FWAudioManager.ts.meta +9 -9
  48. package/manager/FWBundleManager.ts.meta +9 -9
  49. package/manager/FWComponentManager.ts.meta +9 -9
  50. package/manager/FWEngineManager.ts.meta +9 -9
  51. package/manager/FWEventManager.ts.meta +9 -9
  52. package/manager/FWHotUpdateManager.ts.meta +9 -9
  53. package/manager/FWLanguageManager.ts.meta +9 -9
  54. package/manager/FWLayerManager.ts.meta +9 -9
  55. package/manager/FWManager.ts.meta +9 -9
  56. package/manager/FWObjectManager.ts.meta +9 -9
  57. package/manager/FWResManager.ts.meta +9 -9
  58. package/manager/FWSocketManager.ts +9 -14
  59. package/manager/FWSocketManager.ts.meta +9 -9
  60. package/manager/FWStateManager.ts.meta +9 -9
  61. package/manager/FWTaskManager.ts.meta +9 -9
  62. package/manager/FWTimeManager.ts.meta +9 -9
  63. package/manager/FWUiManager.ts.meta +9 -9
  64. package/manager.meta +12 -12
  65. package/package.json +2 -2
  66. package/package.json.meta +6 -0
  67. package/scene/FWScene.ts.meta +9 -9
  68. package/scene.meta +12 -12
  69. package/service/FWService.ts.meta +9 -9
  70. package/service/http/FWHttp.ts.meta +9 -9
  71. package/service/http.meta +12 -12
  72. package/service/socket/FWSocket.ts +87 -30
  73. package/service/socket/FWSocket.ts.meta +9 -9
  74. package/service/socket/FWSocketHandle.ts +8 -6
  75. package/service/socket/FWSocketHandle.ts.meta +9 -9
  76. package/service/socket/FWSocketSender.ts +4 -1
  77. package/service/socket/FWSocketSender.ts.meta +9 -9
  78. package/service/socket.meta +12 -12
  79. package/service.meta +12 -12
  80. package/state/FWState.ts.meta +9 -9
  81. package/state.meta +12 -12
  82. package/utils/FWLodash.ts.meta +9 -9
  83. package/utils/FWMask.ts.meta +9 -9
  84. package/utils/FWObject.ts.meta +9 -9
  85. package/utils/FWObjectPool.ts.meta +9 -9
  86. package/utils/FWQueue.ts.meta +9 -9
  87. package/utils/FWTask.ts.meta +9 -9
  88. package/utils.meta +12 -12
package/FW.d.ts CHANGED
@@ -79,30 +79,41 @@ declare namespace FW {
79
79
  node: cc.Node;
80
80
  };
81
81
 
82
- type Sender = {
82
+ type SocketSender = {
83
83
  readonly entry: FW.Entry;
84
84
  initialize?();
85
85
  onDestroy?();
86
+ /** 发送消息 */
86
87
  send(msg: any);
88
+ /** 获取协议Key值 */
89
+ getProtocolKey?(msg: any): string;
90
+ /** 消息发送前回调函数*/
91
+ onBeforeSendingMessage?(msg: any): string;
92
+ /** 是否是心跳消息 */
93
+ onHeart?(msg: any): Promise<boolean>;
87
94
  };
88
- type Handle = {
95
+ type SocketHandle = {
89
96
  readonly entry: FW.Entry;
90
97
  initialize?();
91
98
  onDestroy?();
92
99
  /** 消息处理 */
93
100
  onMessage(msg: any);
94
101
  /** 超时处理 */
95
- onTimeout();
102
+ onTimeout?();
96
103
  /** 错误处理 */
97
- onError(msg: any);
104
+ onError?(msg: any);
98
105
  /** 连接打开 */
99
- onOpen();
106
+ onOpen?();
100
107
  /** 连接关闭 */
101
- onClose();
108
+ onClose?();
102
109
  /** 心跳 */
103
110
  onHeart?(msg: any): Promise<boolean>;
104
111
  /** 弱网 */
105
112
  onWeakNetWork?(): void;
113
+ /** 获取协议Key值 */
114
+ getProtocolKey?(msg: any): string;
115
+ /** 消息收到前回调函数 */
116
+ onBeforeReceivingMessage?(msg: any): Promise<object>;
106
117
  };
107
118
 
108
119
  type ObjectManager = {
@@ -157,19 +168,14 @@ declare namespace FW {
157
168
  put(uniqueId: number);
158
169
  onDestroy();
159
170
  };
171
+
160
172
  type SocketManager = {
161
173
  createSocket(
162
174
  tag: string,
163
175
  address: string,
164
176
  sender: SocketSender,
165
177
  handle: SocketHandle,
166
- config: {
167
- heartTimeout?: number;
168
- heartWeakTime?: number;
169
- heartInternal?: number;
170
- maxReconnectTimes?: number;
171
- reconnectInternal?: number;
172
- },
178
+ config: SocketConfig,
173
179
  ): Promise<Socket>;
174
180
  /**
175
181
  * 获取socket
@@ -229,7 +235,10 @@ declare namespace FW {
229
235
  * @returns
230
236
  */
231
237
  getReadyState(): number;
232
-
238
+ /**
239
+ * 重连
240
+ */
241
+ reconnect(force?: boolean): void;
233
242
  /**
234
243
  * 关闭连接
235
244
  */
@@ -248,17 +257,21 @@ declare namespace FW {
248
257
  createSocket(
249
258
  address: string,
250
259
  tag: string,
251
- sender: FWSocketSender,
252
- handle: FWSocketHandle,
253
- config: {
254
- heartInternal: number;
255
- heartTimeout: number;
256
- heartWeakTime: number;
257
- maxReconnectTimes: number;
258
- },
260
+ sender: SocketSender,
261
+ handle: SocketHandle,
262
+ config: SocketConfig,
259
263
  ): SocketPromiseProxy;
260
264
  };
261
265
 
266
+ type SocketConfig = {
267
+ heartInternal: number;
268
+ heartTimeout: number;
269
+ heartWeakTime: number;
270
+ maxReconnectTimes: number;
271
+ reconnectInternal: number;
272
+ protocolSymbol: Symbol;
273
+ };
274
+
262
275
  /**
263
276
  * 观察者
264
277
  */
@@ -300,6 +313,8 @@ declare namespace FW {
300
313
 
301
314
  type TargetType = cc.Component | Record<string, any> | cc.Node;
302
315
 
316
+ type Symbol = string | number;
317
+
303
318
  type UiManager = {
304
319
  registerButtonEvent(args: FW.RegisterEventArgs | FW.RegisterEventArgs[]);
305
320
  pauseEvent<T extends TargetType>(target: T);
@@ -1375,11 +1390,11 @@ declare namespace FW {
1375
1390
  /**
1376
1391
  * socket发送者
1377
1392
  */
1378
- sender?: Newable<Sender>;
1393
+ sender?: Newable<SocketSender>;
1379
1394
  /**
1380
1395
  * socket处理者
1381
1396
  */
1382
- handle?: Newable<Handle>;
1397
+ handle?: Newable<SocketHandle>;
1383
1398
  };
1384
1399
 
1385
1400
  /**
package/FW.d.ts.meta CHANGED
@@ -1,6 +1,6 @@
1
- {
2
- "ver": "2.0.2",
3
- "uuid": "a6ecbab2-9bdf-4b34-a89f-d84013abbcf7",
4
- "importer": "text",
5
- "subMetas": {}
1
+ {
2
+ "ver": "2.0.2",
3
+ "uuid": "a6ecbab2-9bdf-4b34-a89f-d84013abbcf7",
4
+ "importer": "text",
5
+ "subMetas": {}
6
6
  }
package/Framework.ts.meta CHANGED
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "6bdfdbc1-c1fe-463c-a55f-b5880e026610",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "6bdfdbc1-c1fe-463c-a55f-b5880e026610",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/README.md.meta CHANGED
@@ -1,6 +1,6 @@
1
- {
2
- "ver": "2.0.2",
3
- "uuid": "3dec38c7-97e0-450a-b652-0a1dd4e5d203",
4
- "importer": "markdown",
5
- "subMetas": {}
1
+ {
2
+ "ver": "2.0.2",
3
+ "uuid": "3dec38c7-97e0-450a-b652-0a1dd4e5d203",
4
+ "importer": "markdown",
5
+ "subMetas": {}
6
6
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "ac85ef49-b48d-44e0-9978-8ac5ca85ed08",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "ac85ef49-b48d-44e0-9978-8ac5ca85ed08",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "6d4b086f-8a83-4ded-94bb-852ac1d2e3a4",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "6d4b086f-8a83-4ded-94bb-852ac1d2e3a4",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "92fc3284-e5d3-470c-b480-4f98a2a32f97",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "92fc3284-e5d3-470c-b480-4f98a2a32f97",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/animation.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "355cab7e-6e54-46de-8ee1-6301aa73043f",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "355cab7e-6e54-46de-8ee1-6301aa73043f",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "e40453b2-93c3-483b-9dda-a6a2128dc417",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "e40453b2-93c3-483b-9dda-a6a2128dc417",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/component.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "d87b0967-c4fa-4062-9d85-dc2366d4a94c",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "d87b0967-c4fa-4062-9d85-dc2366d4a94c",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "17849c36-5d1d-4e28-b745-68b99b1e6f0d",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "17849c36-5d1d-4e28-b745-68b99b1e6f0d",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -0,0 +1,10 @@
1
+ export namespace FWSystemConfig {
2
+ export const SocketDefaultConfig = {
3
+ heartInternal: 3000,
4
+ heartTimeout: 30000,
5
+ heartWeakTime: 1000,
6
+ maxReconnectTimes: 10,
7
+ reconnectInternal: 3000,
8
+ protocolSymbol: null,
9
+ };
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "de945287-2149-4870-b846-761e79868e93",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
+ }
package/config.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "64b11a10-4b35-4ae6-85e1-8327ed7cd174",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "64b11a10-4b35-4ae6-85e1-8327ed7cd174",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "cad3962a-5464-479f-9baf-faaa71ec9a79",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "cad3962a-5464-479f-9baf-faaa71ec9a79",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/controller.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "1f8e8ae0-d591-41d7-a576-572f54e34bf7",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "1f8e8ae0-d591-41d7-a576-572f54e34bf7",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "d963b3bc-9d9c-4cb0-b3ae-b6bf0c744c68",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "d963b3bc-9d9c-4cb0-b3ae-b6bf0c744c68",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/data.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "409f4b6d-a51c-449e-b968-d2dd2087f292",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "409f4b6d-a51c-449e-b968-d2dd2087f292",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "9bbf2221-ff13-4ecb-a262-1ffe4f5fcd27",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "9bbf2221-ff13-4ecb-a262-1ffe4f5fcd27",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "08a489c7-1eb2-493f-9fc2-604b47fe6bcf",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "08a489c7-1eb2-493f-9fc2-604b47fe6bcf",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/define.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "d736c3ef-88cf-416f-8a43-b16a7a369ad8",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "d736c3ef-88cf-416f-8a43-b16a7a369ad8",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "8848bb37-a1fc-43cf-967d-63e757e5d663",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "8848bb37-a1fc-43cf-967d-63e757e5d663",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
package/entry.meta CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "ver": "1.1.3",
3
- "uuid": "0886dc2c-004b-4b93-9c5e-eae8ac86edee",
4
- "importer": "folder",
5
- "isBundle": false,
6
- "bundleName": "",
7
- "priority": 1,
8
- "compressionType": {},
9
- "optimizeHotUpdate": {},
10
- "inlineSpriteFrames": {},
11
- "isRemoteBundle": {},
12
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.3",
3
+ "uuid": "0886dc2c-004b-4b93-9c5e-eae8ac86edee",
4
+ "importer": "folder",
5
+ "isBundle": false,
6
+ "bundleName": "",
7
+ "priority": 1,
8
+ "compressionType": {},
9
+ "optimizeHotUpdate": {},
10
+ "inlineSpriteFrames": {},
11
+ "isRemoteBundle": {},
12
+ "subMetas": {}
13
13
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "a17028d0-eb34-48e2-846a-ce7bbd25a8f4",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "a17028d0-eb34-48e2-846a-ce7bbd25a8f4",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "96d84c32-0f47-4743-bf8f-9a72adda6f7f",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "96d84c32-0f47-4743-bf8f-9a72adda6f7f",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }
@@ -1,10 +1,10 @@
1
- {
2
- "ver": "1.1.0",
3
- "uuid": "3107e3b8-c4c4-41f0-8223-3e85b0b40821",
4
- "importer": "typescript",
5
- "isPlugin": false,
6
- "loadPluginInWeb": true,
7
- "loadPluginInNative": true,
8
- "loadPluginInEditor": false,
9
- "subMetas": {}
1
+ {
2
+ "ver": "1.1.0",
3
+ "uuid": "3107e3b8-c4c4-41f0-8223-3e85b0b40821",
4
+ "importer": "typescript",
5
+ "isPlugin": false,
6
+ "loadPluginInWeb": true,
7
+ "loadPluginInNative": true,
8
+ "loadPluginInEditor": false,
9
+ "subMetas": {}
10
10
  }