@cabloy/cli 3.0.43 → 3.0.45

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.
@@ -289,9 +289,10 @@ export class LocalHelper {
289
289
  }
290
290
  }
291
291
  function _formatFileDisable(fileName) {
292
- if (/.env$/.test(fileName))
292
+ const baseName = path.basename(fileName);
293
+ if (/.env\..*$/.test(baseName))
293
294
  return true;
294
- if (/.env\..*$/.test(fileName))
295
+ if (['.env', 'docker-compose-dockerfile-app', 'docker-compose.yml'].includes(baseName))
295
296
  return true;
296
297
  return false;
297
298
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/cli",
3
3
  "type": "module",
4
- "version": "3.0.43",
4
+ "version": "3.0.45",
5
5
  "description": "@cabloy/cli",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -27,10 +27,10 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@babel/parser": "^7.26.5",
30
- "@cabloy/module-glob": "^5.2.24",
30
+ "@cabloy/module-glob": "^5.2.25",
31
31
  "@cabloy/module-info": "^1.3.26",
32
32
  "@cabloy/process-helper": "^2.0.18",
33
- "@cabloy/utils": "^1.0.39",
33
+ "@cabloy/utils": "^1.0.40",
34
34
  "@cabloy/word-utils": "^2.0.1",
35
35
  "@npmcli/config": "^8.3.4",
36
36
  "@zhennann/common-bin": "^4.0.0",