file-lane 2.0.6-beta.11 → 2.0.6-beta.13

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.
Files changed (2) hide show
  1. package/lib/FileLane.js +1 -1
  2. package/package.json +3 -3
package/lib/FileLane.js CHANGED
@@ -538,7 +538,7 @@ class FileLane {
538
538
  }
539
539
  }
540
540
  // 2. 忽略.开头的隐藏文件夹
541
- ignoreList.push(/(^|[\/\\])\../);
541
+ ignoreList.push('**/.*/**', '**/.*');
542
542
 
543
543
  // 3. 忽略output目录
544
544
  ignoreList.push(_path.default.join(this.context.projectPath, this.config.output));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-lane",
3
- "version": "2.0.6-beta.11",
3
+ "version": "2.0.6-beta.13",
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.11",
23
+ "@aiot-toolkit/shared-utils": "2.0.6-beta.13",
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": "acecf0ae5d6991619051dbbeda770a602f215dd6"
30
+ "gitHead": "a565cdee8e827a67b4043d9f872b7a6d933630db"
31
31
  }