ante-erp-cli 1.11.19 → 1.11.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ante-erp-cli",
3
- "version": "1.11.19",
3
+ "version": "1.11.20",
4
4
  "description": "Comprehensive CLI tool for managing ANTE ERP self-hosted installations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -299,8 +299,7 @@ export async function runSystemChecks() {
299
299
  docker: await checkDocker(),
300
300
  dockerCompose: await checkDockerCompose(),
301
301
  node: checkNode(),
302
- diskSpace: checkDiskSpace(),
303
- ports: await checkPorts()
302
+ diskSpace: checkDiskSpace()
304
303
  };
305
304
 
306
305
  const ok = Object.values(checks).every(check => check.ok);