aircitytype 1.1.6 → 1.1.7

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.
@@ -739,7 +739,7 @@ interface EditHelper {
739
739
  start(fn?: () => void): void;
740
740
  }
741
741
 
742
- declare class fdapi {
742
+ declare class FDAPITYPE {
743
743
  tag: any;
744
744
  coord: any;
745
745
  constructor(a: any, b: any, c: any);
@@ -861,7 +861,8 @@ type EchartTool = {
861
861
 
862
862
  declare var HostConfig: HOSTINFO;
863
863
  declare var offline: boolean;
864
- declare var __g: fdapi;
864
+ declare var __g: FDAPITYPE;
865
+ declare var fdapi: FDAPITYPE;
865
866
  declare var __player: { resize: () => void };
866
867
  declare var tools: EchartTool;
867
868
  declare var projectROOT: string;
package/main.js CHANGED
@@ -73,8 +73,6 @@ function parseJsonFile(filePath, callback) {
73
73
  return;
74
74
  }
75
75
 
76
- console.log(data);
77
-
78
76
  let jsonData;
79
77
  try {
80
78
  jsonData = parse(data);
@@ -83,8 +81,6 @@ function parseJsonFile(filePath, callback) {
83
81
  return;
84
82
  }
85
83
 
86
- console.log(`解析的配置文件内容:`, jsonData);
87
-
88
84
  // 检查和修改配置
89
85
  modifyCompilerOptions(jsonData);
90
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aircitytype",
3
- "description": "增加了types中aircity的检测",
3
+ "description": "增加了fdapi",
4
4
  "scripts": {
5
5
  "test": "echo \"Error: no test specified\" && exit 1"
6
6
  },
@@ -14,8 +14,8 @@
14
14
  "bin": {
15
15
  "installdts": "./main.js"
16
16
  },
17
- "version": "1.1.6",
18
17
  "dependencies": {
19
18
  "jsonc-parser": "^3.3.1"
20
- }
19
+ },
20
+ "version": "1.1.7"
21
21
  }