@friggframework/devtools 2.0.0--canary.395.eb0264e.0 → 2.0.0--canary.395.6ee402d.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.
|
@@ -2,19 +2,10 @@ const path = require('path');
|
|
|
2
2
|
const fs = require('fs');
|
|
3
3
|
const { AWSDiscovery } = require('./aws-discovery');
|
|
4
4
|
|
|
5
|
-
const shouldRunDiscovery = (AppDefinition) =>
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
console.log('⏭️ Skipping AWS discovery for local development (IS_OFFLINE=true)');
|
|
10
|
-
return false;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// Only run discovery if VPC, KMS encryption, or SSM is enabled
|
|
14
|
-
return AppDefinition.vpc?.enable === true ||
|
|
15
|
-
AppDefinition.encryption?.fieldLevelEncryptionMethod === 'kms' ||
|
|
16
|
-
AppDefinition.ssm?.enable === true;
|
|
17
|
-
};
|
|
5
|
+
const shouldRunDiscovery = (AppDefinition) =>
|
|
6
|
+
AppDefinition.vpc?.enable === true ||
|
|
7
|
+
AppDefinition.encryption?.fieldLevelEncryptionMethod === 'kms' ||
|
|
8
|
+
AppDefinition.ssm?.enable === true;
|
|
18
9
|
|
|
19
10
|
const getAppEnvironmentVars = (AppDefinition) => {
|
|
20
11
|
const envVars = {};
|
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.395.
|
|
4
|
+
"version": "2.0.0--canary.395.6ee402d.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@aws-sdk/client-ec2": "^3.835.0",
|
|
7
7
|
"@aws-sdk/client-kms": "^3.835.0",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"@babel/eslint-parser": "^7.18.9",
|
|
10
10
|
"@babel/parser": "^7.25.3",
|
|
11
11
|
"@babel/traverse": "^7.25.3",
|
|
12
|
-
"@friggframework/schemas": "2.0.0--canary.395.
|
|
13
|
-
"@friggframework/test": "2.0.0--canary.395.
|
|
12
|
+
"@friggframework/schemas": "2.0.0--canary.395.6ee402d.0",
|
|
13
|
+
"@friggframework/test": "2.0.0--canary.395.6ee402d.0",
|
|
14
14
|
"@hapi/boom": "^10.0.1",
|
|
15
15
|
"@inquirer/prompts": "^5.3.8",
|
|
16
16
|
"axios": "^1.7.2",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"serverless-http": "^2.7.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@friggframework/eslint-config": "2.0.0--canary.395.
|
|
36
|
-
"@friggframework/prettier-config": "2.0.0--canary.395.
|
|
35
|
+
"@friggframework/eslint-config": "2.0.0--canary.395.6ee402d.0",
|
|
36
|
+
"@friggframework/prettier-config": "2.0.0--canary.395.6ee402d.0",
|
|
37
37
|
"aws-sdk-client-mock": "^4.1.0",
|
|
38
38
|
"aws-sdk-client-mock-jest": "^4.1.0",
|
|
39
39
|
"jest": "^30.1.3",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"publishConfig": {
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "6ee402d0d7aec57c3f90972901751c23a3b734ec"
|
|
72
72
|
}
|