@ives_xxz/framework 2.1.20 → 2.1.23

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 (2) hide show
  1. package/entry/FWEntry.ts +1 -2
  2. package/package.json +2 -4
package/entry/FWEntry.ts CHANGED
@@ -21,7 +21,7 @@ import { FWPerformanceManager } from '../manager/FWPerformanceManager';
21
21
  * 入口脚本
22
22
  */
23
23
  export class FWEntry implements FW.Entry {
24
- map: Map<string, FW.RegisterBundle>;
24
+ map: Map<string, FW.RegisterBundle> = new Map<string, FW.RegisterBundle>();
25
25
  /**
26
26
  * 事件管理器
27
27
  */
@@ -102,7 +102,6 @@ export class FWEntry implements FW.Entry {
102
102
  * 初始化
103
103
  * */
104
104
  initialize() {
105
- this.map = new Map<string, FW.RegisterBundle>();
106
105
  this.evtMgr = new FWEventManager();
107
106
  this.timeMgr = new FWTimeManager();
108
107
  this.engineMgr = new FWEngineManager();
package/package.json CHANGED
@@ -1,11 +1,9 @@
1
1
  {
2
2
  "name": "@ives_xxz/framework",
3
- "version": "2.1.20",
3
+ "version": "2.1.23",
4
4
  "description": "cocoscreator 2.x mvc framework",
5
5
  "main": "index.js",
6
- "keywords": [
7
- "123456"
8
- ],
6
+ "keywords": ["123456"],
9
7
  "author": "ives",
10
8
  "license": "ISC"
11
9
  }