@friggframework/devtools 2.0.0--canary.490.84409c6.0 → 2.0.0--canary.490.0c10993.0

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.
@@ -284,8 +284,13 @@ async function deployCommand(options) {
284
284
 
285
285
  console.log('\n✓ Deployment completed successfully!');
286
286
 
287
- // Run post-deployment health check (unless --skip-doctor)
288
- if (!options.skipDoctor) {
287
+ // Run post-deployment health check (unless disabled)
288
+ // Can be disabled via:
289
+ // 1. CLI flag: --skip-doctor
290
+ // 2. AppDefinition: deployment.skipPostDeploymentHealthCheck: true
291
+ const skipHealthCheck = options.skipDoctor || appDefinition?.deployment?.skipPostDeploymentHealthCheck;
292
+
293
+ if (!skipHealthCheck) {
289
294
  const stackName = getStackName(appDefinition, options);
290
295
 
291
296
  if (stackName) {
@@ -295,7 +300,8 @@ async function deployCommand(options) {
295
300
  console.log(' Run "frigg doctor <stack-name>" manually to check stack health');
296
301
  }
297
302
  } else {
298
- console.log('\n⏭️ Skipping post-deployment health check (--skip-doctor)');
303
+ const reason = options.skipDoctor ? '--skip-doctor flag' : 'deployment.skipPostDeploymentHealthCheck: true';
304
+ console.log(`\n⏭️ Skipping post-deployment health check (${reason})`);
299
305
  }
300
306
  }
301
307
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/devtools",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.490.84409c6.0",
4
+ "version": "2.0.0--canary.490.0c10993.0",
5
5
  "bin": {
6
6
  "frigg": "./frigg-cli/index.js"
7
7
  },
@@ -16,9 +16,9 @@
16
16
  "@babel/eslint-parser": "^7.18.9",
17
17
  "@babel/parser": "^7.25.3",
18
18
  "@babel/traverse": "^7.25.3",
19
- "@friggframework/core": "2.0.0--canary.490.84409c6.0",
20
- "@friggframework/schemas": "2.0.0--canary.490.84409c6.0",
21
- "@friggframework/test": "2.0.0--canary.490.84409c6.0",
19
+ "@friggframework/core": "2.0.0--canary.490.0c10993.0",
20
+ "@friggframework/schemas": "2.0.0--canary.490.0c10993.0",
21
+ "@friggframework/test": "2.0.0--canary.490.0c10993.0",
22
22
  "@hapi/boom": "^10.0.1",
23
23
  "@inquirer/prompts": "^5.3.8",
24
24
  "axios": "^1.7.2",
@@ -46,8 +46,8 @@
46
46
  "validate-npm-package-name": "^5.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@friggframework/eslint-config": "2.0.0--canary.490.84409c6.0",
50
- "@friggframework/prettier-config": "2.0.0--canary.490.84409c6.0",
49
+ "@friggframework/eslint-config": "2.0.0--canary.490.0c10993.0",
50
+ "@friggframework/prettier-config": "2.0.0--canary.490.0c10993.0",
51
51
  "aws-sdk-client-mock": "^4.1.0",
52
52
  "aws-sdk-client-mock-jest": "^4.1.0",
53
53
  "jest": "^30.1.3",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "84409c6304ea14a6b9789ed8fc9ca07fe2385b17"
82
+ "gitHead": "0c10993ff93b9aab5ec4db376236cba358d79d7e"
83
83
  }