@friggframework/devtools 2.0.0--canary.461.a5281ce.0 → 2.0.0--canary.461.8f52ae8.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.
|
@@ -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
|
-
|
|
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.
|
|
4
|
+
"version": "2.0.0--canary.461.8f52ae8.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.
|
|
15
|
-
"@friggframework/test": "2.0.0--canary.461.
|
|
14
|
+
"@friggframework/schemas": "2.0.0--canary.461.8f52ae8.0",
|
|
15
|
+
"@friggframework/test": "2.0.0--canary.461.8f52ae8.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.
|
|
38
|
-
"@friggframework/prettier-config": "2.0.0--canary.461.
|
|
37
|
+
"@friggframework/eslint-config": "2.0.0--canary.461.8f52ae8.0",
|
|
38
|
+
"@friggframework/prettier-config": "2.0.0--canary.461.8f52ae8.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": "
|
|
73
|
+
"gitHead": "8f52ae84357c6b0fa02fe92bad85312590b8d17c"
|
|
74
74
|
}
|