@wwawing/loader 3.12.16-publish-test.based-on.3.12.15 → 3.12.16

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.
@@ -28,4 +28,4 @@ var BytePosition;
28
28
  BytePosition[BytePosition["ITEMBOX_TOP"] = 60] = "ITEMBOX_TOP";
29
29
  BytePosition[BytePosition["MAPDATA_TOP"] = 90] = "MAPDATA_TOP";
30
30
  BytePosition[BytePosition["OLD_MAPDATA_TOP"] = 100] = "OLD_MAPDATA_TOP";
31
- })(BytePosition = exports.BytePosition || (exports.BytePosition = {}));
31
+ })(BytePosition || (exports.BytePosition = BytePosition = {}));
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createDefaultWWAData = exports.LoadStage = exports.PartsType = exports.LoaderProgress = exports.LoaderError = exports.WWAConsts = void 0;
4
4
  class WWAConsts {
5
5
  }
6
+ exports.WWAConsts = WWAConsts;
6
7
  WWAConsts.ITEMBOX_SIZE = 12;
7
8
  WWAConsts.MAP_ATR_MAX = 60;
8
9
  WWAConsts.OBJ_ATR_MAX = 60;
@@ -54,7 +55,6 @@ WWAConsts.DEFAULT_STATUS_COLOR_B = 0x0;
54
55
  WWAConsts.DEFAULT_MOVES = 0;
55
56
  WWAConsts.DEFAULT_SPEED_INDEX = 3;
56
57
  WWAConsts.USER_VAR_NUM = 256;
57
- exports.WWAConsts = WWAConsts;
58
58
  class LoaderError {
59
59
  }
60
60
  exports.LoaderError = LoaderError;
@@ -65,7 +65,7 @@ var PartsType;
65
65
  (function (PartsType) {
66
66
  PartsType[PartsType["MAP"] = 1] = "MAP";
67
67
  PartsType[PartsType["OBJECT"] = 0] = "OBJECT";
68
- })(PartsType = exports.PartsType || (exports.PartsType = {}));
68
+ })(PartsType || (exports.PartsType = PartsType = {}));
69
69
  var LoadStage;
70
70
  (function (LoadStage) {
71
71
  LoadStage[LoadStage["INIT"] = 0] = "INIT";
@@ -75,7 +75,7 @@ var LoadStage;
75
75
  LoadStage[LoadStage["OBJ_ATTR"] = 4] = "OBJ_ATTR";
76
76
  LoadStage[LoadStage["RAND_PARTS"] = 5] = "RAND_PARTS";
77
77
  LoadStage[LoadStage["MESSAGE"] = 6] = "MESSAGE";
78
- })(LoadStage = exports.LoadStage || (exports.LoadStage = {}));
78
+ })(LoadStage || (exports.LoadStage = LoadStage = {}));
79
79
  function createDefaultWWAData() {
80
80
  return {
81
81
  version: undefined,
@@ -1,4 +1,4 @@
1
- class WWAConsts {
1
+ export class WWAConsts {
2
2
  }
3
3
  WWAConsts.ITEMBOX_SIZE = 12;
4
4
  WWAConsts.MAP_ATR_MAX = 60;
@@ -51,7 +51,6 @@ WWAConsts.DEFAULT_STATUS_COLOR_B = 0x0;
51
51
  WWAConsts.DEFAULT_MOVES = 0;
52
52
  WWAConsts.DEFAULT_SPEED_INDEX = 3;
53
53
  WWAConsts.USER_VAR_NUM = 256;
54
- export { WWAConsts };
55
54
  export class LoaderError {
56
55
  }
57
56
  export class LoaderProgress {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wwawing/loader",
3
- "version": "3.12.16-publish-test.based-on.3.12.15",
3
+ "version": "3.12.16",
4
4
  "description": "a World Wide Adventure mapdata loader for client-side web applications",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./module/index.js",
@@ -44,18 +44,18 @@
44
44
  },
45
45
  "homepage": "https://github.com/WWAWing/WWALoader#readme",
46
46
  "dependencies": {
47
- "@wwawing/event-emitter": "^3.12.16-publish-test.based-on.3.12.15"
47
+ "@wwawing/event-emitter": "^3.12.16"
48
48
  },
49
49
  "devDependencies": {
50
- "@wwawing/common-interface": "^3.12.16-publish-test.based-on.3.12.15",
50
+ "@wwawing/common-interface": "^3.12.16",
51
51
  "cross-env": "^7.0.3",
52
- "html-loader": "^4.2.0",
52
+ "html-loader": "^5.1.0",
53
53
  "html-webpack-plugin": "^5.5.0",
54
54
  "http-server": "^14.1.1",
55
55
  "npm-run-all": "^4.1.5",
56
56
  "shelljs": "^0.8.5",
57
57
  "shx": "^0.3.4",
58
- "ts-loader": "^9.4.3",
58
+ "ts-loader": "^9.5.2",
59
59
  "ts-node": "^10.9.1",
60
60
  "typescript": "^5.0.4",
61
61
  "webpack": "^5.83.1",
@@ -68,5 +68,5 @@
68
68
  "node": ">=22",
69
69
  "npm": ">=10"
70
70
  },
71
- "gitHead": "752b85894f2b85fac80d9f86343155b76fa73e8b"
71
+ "gitHead": "38193392c388db4d503d777c7e032fd428489319"
72
72
  }