directus-template-cli 0.7.0-beta.6 → 0.7.0-beta.8

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.
@@ -6,7 +6,7 @@ export const DIRECTUS_CONFIG = {
6
6
  };
7
7
  export const DOCKER_CONFIG = {
8
8
  composeFile: 'docker-compose.yml',
9
- healthCheckEndpoint: '/server/health',
9
+ healthCheckEndpoint: '/server/ping',
10
10
  interval: 3000,
11
11
  maxAttempts: 30,
12
12
  };
@@ -55,6 +55,7 @@ async function checkRequiredPorts() {
55
55
  }
56
56
  if (hasConflicts) {
57
57
  ux.warn('Please stop any conflicting services before continuing.');
58
+ process.exit(1);
58
59
  }
59
60
  }
60
61
  /**
@@ -378,5 +378,5 @@
378
378
  ]
379
379
  }
380
380
  },
381
- "version": "0.7.0-beta.6"
381
+ "version": "0.7.0-beta.8"
382
382
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directus-template-cli",
3
- "version": "0.7.0-beta.6",
3
+ "version": "0.7.0-beta.8",
4
4
  "description": "CLI Utility for applying templates to a Directus instance.",
5
5
  "author": "bryantgillespie @bryantgillespie",
6
6
  "type": "module",