@friggframework/devtools 2.0.0--canary.566.690c174.0 → 2.0.0--canary.566.dd131b2.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.
|
@@ -310,7 +310,7 @@ class IntegrationBuilder extends InfrastructureBuilder {
|
|
|
310
310
|
skipEsbuild: true, // Nested exports in node_modules - skip esbuild bundling
|
|
311
311
|
package: functionPackageConfig,
|
|
312
312
|
...(usePrismaLayer && { layers: [{ Ref: 'PrismaLambdaLayer' }] }), // Queue workers need Prisma for database operations
|
|
313
|
-
reservedConcurrency:
|
|
313
|
+
reservedConcurrency: 20,
|
|
314
314
|
events: [
|
|
315
315
|
{
|
|
316
316
|
sqs: {
|
|
@@ -260,7 +260,7 @@ describe('IntegrationBuilder', () => {
|
|
|
260
260
|
|
|
261
261
|
const result = await integrationBuilder.build(appDefinition, {});
|
|
262
262
|
|
|
263
|
-
expect(result.functions.testQueueWorker.reservedConcurrency).toBe(
|
|
263
|
+
expect(result.functions.testQueueWorker.reservedConcurrency).toBe(20);
|
|
264
264
|
});
|
|
265
265
|
|
|
266
266
|
it('should add queue URL to environment variables', async () => {
|
|
@@ -1162,7 +1162,7 @@ describe('composeServerlessDefinition', () => {
|
|
|
1162
1162
|
// Check Queue Worker
|
|
1163
1163
|
expect(result.functions.testIntegrationQueueWorker).toEqual({
|
|
1164
1164
|
handler: 'node_modules/@friggframework/core/handlers/workers/integration-defined-workers.handlers.testIntegration.queueWorker',
|
|
1165
|
-
reservedConcurrency:
|
|
1165
|
+
reservedConcurrency: 20,
|
|
1166
1166
|
events: [{
|
|
1167
1167
|
sqs: {
|
|
1168
1168
|
arn: {
|
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.566.
|
|
4
|
+
"version": "2.0.0--canary.566.dd131b2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"frigg": "./frigg-cli/index.js"
|
|
7
7
|
},
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@babel/eslint-parser": "^7.18.9",
|
|
26
26
|
"@babel/parser": "^7.25.3",
|
|
27
27
|
"@babel/traverse": "^7.25.3",
|
|
28
|
-
"@friggframework/core": "2.0.0--canary.566.
|
|
29
|
-
"@friggframework/schemas": "2.0.0--canary.566.
|
|
30
|
-
"@friggframework/test": "2.0.0--canary.566.
|
|
28
|
+
"@friggframework/core": "2.0.0--canary.566.dd131b2.0",
|
|
29
|
+
"@friggframework/schemas": "2.0.0--canary.566.dd131b2.0",
|
|
30
|
+
"@friggframework/test": "2.0.0--canary.566.dd131b2.0",
|
|
31
31
|
"@hapi/boom": "^10.0.1",
|
|
32
32
|
"@inquirer/prompts": "^5.3.8",
|
|
33
33
|
"axios": "^1.7.2",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"validate-npm-package-name": "^5.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@friggframework/eslint-config": "2.0.0--canary.566.
|
|
59
|
-
"@friggframework/prettier-config": "2.0.0--canary.566.
|
|
58
|
+
"@friggframework/eslint-config": "2.0.0--canary.566.dd131b2.0",
|
|
59
|
+
"@friggframework/prettier-config": "2.0.0--canary.566.dd131b2.0",
|
|
60
60
|
"aws-sdk-client-mock": "^4.1.0",
|
|
61
61
|
"aws-sdk-client-mock-jest": "^4.1.0",
|
|
62
62
|
"jest": "^30.1.3",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "dd131b259494d30db740a528378f27af69b7a789"
|
|
92
92
|
}
|