aiot-toolkit 2.0.2-beta.1 → 2.0.2-beta.2

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.
@@ -89,7 +89,7 @@ class UxBuilder {
89
89
  mode: compileMode,
90
90
  disabledJSC: options.disabledJsc,
91
91
  enableProtobuf: options.enableProtobuf,
92
- devtool: UxBuilderUtils_1.default.getDevtoolValue(compileMode, options.devtool)
92
+ devtool: UxBuilderUtils_1.default.getDevtoolValue(compileMode, options.devtool || false)
93
93
  }, JavascriptDefaultCompileOption_1.default, otherConfig);
94
94
  ColorConsole_1.default.info('start build: ', {
95
95
  style: ColorConsole_1.default.getStyle(shared_utils_1.LOG_LEVEL.Info),
@@ -73,7 +73,7 @@ class XtsBuilder {
73
73
  const follWorks = config.followWorks || [];
74
74
  for (let item of follWorks) {
75
75
  try {
76
- yield item(context, config, compilerOptions);
76
+ yield item.worker(context, config, compilerOptions);
77
77
  }
78
78
  catch (error) {
79
79
  // 报错 prework的item error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiot-toolkit",
3
- "version": "2.0.2-beta.1",
3
+ "version": "2.0.2-beta.2",
4
4
  "description": "Tools for creating, developing, and packaging aiot applications.",
5
5
  "keywords": [
6
6
  "aiot"
@@ -21,17 +21,17 @@
21
21
  "test": "node ./__tests__/aiot-toolkit.test.js"
22
22
  },
23
23
  "dependencies": {
24
- "@aiot-toolkit/commander": "2.0.2-beta.1",
25
- "@aiot-toolkit/emulator": "2.0.2-beta.1",
26
- "@aiot-toolkit/shared-utils": "2.0.2-beta.1",
24
+ "@aiot-toolkit/commander": "2.0.2-beta.2",
25
+ "@aiot-toolkit/emulator": "2.0.2-beta.2",
26
+ "@aiot-toolkit/shared-utils": "2.0.2-beta.2",
27
27
  "@miwt/adb": "^0.7.1",
28
28
  "adb-commander": "^0.1.9",
29
29
  "adm-zip": "^0.5.10",
30
30
  "axios": "^1.5.0",
31
31
  "cli-progress": "^3.12.0",
32
- "create-aiot": "2.0.2-beta.1",
32
+ "create-aiot": "2.0.2-beta.2",
33
33
  "fast-glob": "^3.3.2",
34
- "file-lane": "2.0.2-beta.1",
34
+ "file-lane": "2.0.2-beta.2",
35
35
  "semver": "^7.6.0",
36
36
  "ws": "^8.15.1"
37
37
  },
@@ -40,5 +40,5 @@
40
40
  "@types/semver": "^7.5.8",
41
41
  "@types/ws": "^8.5.10"
42
42
  },
43
- "gitHead": "9244af36e617295ea4ff11a2f4f07f0e4f9f5f59"
43
+ "gitHead": "5226bdb0ba61daef207531c2eaaf3d034e04c50f"
44
44
  }