file-lane 2.0.6-beta.7 → 2.0.6-beta.8

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.
@@ -10,9 +10,13 @@ declare class FileLaneCompilation extends AsyncEventDispatcher {
10
10
  */
11
11
  entries: string[];
12
12
  /**
13
- * 中存放轻卡路由
13
+ * 存放轻卡路由
14
14
  */
15
15
  liteCards: string[];
16
+ /**
17
+ * services 路由
18
+ */
19
+ services: Record<string, any>[];
16
20
  /**
17
21
  * 触发方式
18
22
  *
@@ -17,9 +17,15 @@ class FileLaneCompilation extends _AsyncEventDispatcher.default {
17
17
  */
18
18
  entries = [];
19
19
  /**
20
- * 中存放轻卡路由
20
+ * 存放轻卡路由
21
21
  */
22
22
  liteCards = [];
23
+
24
+ /**
25
+ * services 路由
26
+ */
27
+ services = [];
28
+
23
29
  /**
24
30
  * 触发方式
25
31
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-lane",
3
- "version": "2.0.6-beta.7",
3
+ "version": "2.0.6-beta.8",
4
4
  "description": "File conversion tool, can be one-to-one, one to N, N to one",
5
5
  "keywords": [
6
6
  "file",
@@ -20,12 +20,12 @@
20
20
  "test": "node ./__tests__/file-lane.test.js"
21
21
  },
22
22
  "dependencies": {
23
- "@aiot-toolkit/shared-utils": "2.0.6-beta.7",
23
+ "@aiot-toolkit/shared-utils": "2.0.6-beta.8",
24
24
  "chokidar": "^3.6.0",
25
25
  "fs-extra": "^11.2.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/fs-extra": "^11.0.4"
29
29
  },
30
- "gitHead": "f82d6f9e300b9e8b9c10a5f76d1747d978ab75fb"
30
+ "gitHead": "b9380b1c748324938f84da01d035345116f8d0ba"
31
31
  }