ante-erp-cli 1.11.17 → 1.11.18

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.17",
3
+ "version": "1.11.18",
4
4
  "description": "Comprehensive CLI tool for managing ANTE ERP self-hosted installations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -183,7 +183,6 @@ export async function install(options) {
183
183
  console.log(` ${checks.dockerCompose.ok ? chalk.green('✓') : chalk.red('✗')} Docker Compose: ${checks.dockerCompose.message}`);
184
184
  console.log(` ${checks.node.ok ? chalk.green('✓') : chalk.red('✗')} Node.js: ${checks.node.message}`);
185
185
  console.log(` ${checks.diskSpace.ok ? chalk.green('✓') : chalk.red('✗')} Disk Space: ${checks.diskSpace.message}`);
186
- console.log(` ${checks.memory.ok ? chalk.green('✓') : chalk.red('✗')} Memory: ${checks.memory.message}`);
187
186
 
188
187
  if (!ok || !checks.docker.ok) {
189
188
  console.log(chalk.red('\n✗ System requirements not met. Please resolve issues above.\n'));
@@ -300,13 +300,11 @@ export async function runSystemChecks() {
300
300
  dockerCompose: await checkDockerCompose(),
301
301
  node: checkNode(),
302
302
  diskSpace: checkDiskSpace(),
303
- memory: checkMemory(),
304
- cpu: checkCPU(),
305
303
  ports: await checkPorts()
306
304
  };
307
-
305
+
308
306
  const ok = Object.values(checks).every(check => check.ok);
309
-
307
+
310
308
  return { ok, checks };
311
309
  }
312
310