file-lane 2.0.5-beta.19 → 2.0.5-beta.20

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.
@@ -1,11 +1,10 @@
1
1
  import FileLaneTriggerType from './enum/FileLaneTriggerType';
2
2
  import AsyncEventDispatcher from './event/asyncEvent/AsyncEventDispatcher';
3
- import IFileParam from './interface/IFileParam';
4
3
  /**
5
4
  * FileLaneCompilation
6
5
  */
7
6
  declare class FileLaneCompilation extends AsyncEventDispatcher {
8
- buildFileList: IFileParam<any>[];
7
+ buildFileList: string[];
9
8
  /**
10
9
  * 触发方式
11
10
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-lane",
3
- "version": "2.0.5-beta.19",
3
+ "version": "2.0.5-beta.20",
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.5-beta.19",
23
+ "@aiot-toolkit/shared-utils": "2.0.5-beta.20",
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": "a0db41174e2ccc9750a8422bed0bc3392965407d"
30
+ "gitHead": "e34506862fb5e24eb86b4a4aa67fa88bb76f6114"
31
31
  }