@friggframework/devtools 2.0.0--canary.461.4166d53.0 → 2.0.0--canary.461.0f72685.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.
@@ -159,6 +159,9 @@ class VpcBuilder extends InfrastructureBuilder {
159
159
  }
160
160
  }
161
161
 
162
+ // Set VPC_ENABLED environment variable so runtime can detect VPC configuration
163
+ result.environment.VPC_ENABLED = 'true';
164
+
162
165
  console.log(`[${this.name}] ✅ VPC infrastructure built successfully`);
163
166
  console.log(` - VPC ID: ${result.vpcId || 'from discovery'}`);
164
167
  console.log(` - Subnets: ${result.vpcConfig.subnetIds.length}`);
@@ -40,11 +40,11 @@ function createBaseDefinition(
40
40
  'node_modules/.prisma/**',
41
41
  'node_modules/prisma/**',
42
42
  'node_modules/@friggframework/core/generated/**',
43
-
43
+
44
44
  // Exclude AWS SDK (provided by Lambda runtime)
45
45
  'node_modules/aws-sdk/**',
46
46
  'node_modules/@aws-sdk/**',
47
-
47
+
48
48
  // Exclude dev/test dependencies
49
49
  'node_modules/@friggframework/test/**',
50
50
  'node_modules/@friggframework/eslint-config/**',
@@ -52,7 +52,7 @@ function createBaseDefinition(
52
52
  'node_modules/jest/**',
53
53
  'node_modules/prettier/**',
54
54
  'node_modules/eslint/**',
55
-
55
+
56
56
  // Exclude test files and layers (but keep src/ - needed for app definition)
57
57
  'test/**',
58
58
  'layers/**',
@@ -90,14 +90,14 @@ function createBaseDefinition(
90
90
  '**/*.spec.js',
91
91
  '.git/**',
92
92
  '.github/**',
93
-
93
+
94
94
  // Exclude AI assistant and development artifacts
95
95
  '**/.claude-flow/**',
96
96
  '**/.swarm/**',
97
97
  '**/CLAUDE.md',
98
98
  '**/README.md',
99
99
  '**/*.md',
100
-
100
+
101
101
  // Exclude config and meta files from core
102
102
  'node_modules/@friggframework/core/.eslintrc.json',
103
103
  'node_modules/@friggframework/core/.gitignore',
@@ -112,7 +112,9 @@ function createBaseDefinition(
112
112
  package: {
113
113
  individually: true,
114
114
  },
115
- useDotenv: true,
115
+ // Only use .env for local development (offline mode)
116
+ // Production deployments should use environment vars from infrastructure
117
+ useDotenv: process.argv.includes('offline'),
116
118
  provider: {
117
119
  name: AppDefinition.provider || 'aws',
118
120
  ...(process.env.AWS_PROFILE && { profile: process.env.AWS_PROFILE }),
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.461.4166d53.0",
4
+ "version": "2.0.0--canary.461.0f72685.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-ec2": "^3.835.0",
7
7
  "@aws-sdk/client-kms": "^3.835.0",
@@ -11,8 +11,8 @@
11
11
  "@babel/eslint-parser": "^7.18.9",
12
12
  "@babel/parser": "^7.25.3",
13
13
  "@babel/traverse": "^7.25.3",
14
- "@friggframework/schemas": "2.0.0--canary.461.4166d53.0",
15
- "@friggframework/test": "2.0.0--canary.461.4166d53.0",
14
+ "@friggframework/schemas": "2.0.0--canary.461.0f72685.0",
15
+ "@friggframework/test": "2.0.0--canary.461.0f72685.0",
16
16
  "@hapi/boom": "^10.0.1",
17
17
  "@inquirer/prompts": "^5.3.8",
18
18
  "axios": "^1.7.2",
@@ -34,8 +34,8 @@
34
34
  "serverless-http": "^2.7.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@friggframework/eslint-config": "2.0.0--canary.461.4166d53.0",
38
- "@friggframework/prettier-config": "2.0.0--canary.461.4166d53.0",
37
+ "@friggframework/eslint-config": "2.0.0--canary.461.0f72685.0",
38
+ "@friggframework/prettier-config": "2.0.0--canary.461.0f72685.0",
39
39
  "aws-sdk-client-mock": "^4.1.0",
40
40
  "aws-sdk-client-mock-jest": "^4.1.0",
41
41
  "jest": "^30.1.3",
@@ -70,5 +70,5 @@
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
- "gitHead": "4166d530b765f85965bdaa77cd4341e8d6e2c12f"
73
+ "gitHead": "0f7268517dee03e890fe6c65a21f439b0428de3e"
74
74
  }