@wraps.dev/cli 2.2.5 → 2.2.7

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.
package/dist/cli.js CHANGED
@@ -147,7 +147,7 @@ var require_package = __commonJS({
147
147
  "package.json"(exports, module) {
148
148
  module.exports = {
149
149
  name: "@wraps.dev/cli",
150
- version: "2.2.5",
150
+ version: "2.2.7",
151
151
  description: "CLI for deploying Wraps email infrastructure to your AWS account",
152
152
  type: "module",
153
153
  main: "./dist/cli.js",
@@ -194,7 +194,6 @@ var require_package = __commonJS({
194
194
  author: "Wraps",
195
195
  license: "AGPL-3.0-or-later",
196
196
  dependencies: {
197
- "@wraps/core": "workspace:*",
198
197
  "@aws-sdk/client-acm": "3.933.0",
199
198
  "@aws-sdk/client-cloudformation": "^3.490.0",
200
199
  "@aws-sdk/client-cloudfront": "3.933.0",
@@ -231,6 +230,7 @@ var require_package = __commonJS({
231
230
  uuid: "^11.0.3"
232
231
  },
233
232
  devDependencies: {
233
+ "@wraps/core": "workspace:*",
234
234
  "@types/args": "5.0.4",
235
235
  "@types/express": "^5.0.0",
236
236
  "@types/mailparser": "3.4.6",
@@ -3272,18 +3272,6 @@ async function findEventSourceMapping(functionName, queueArn) {
3272
3272
  }
3273
3273
  }
3274
3274
  async function getLambdaCode(functionName) {
3275
- if (functionName === "event-processor") {
3276
- const coreBundleMarker = join4(LAMBDA_EVENT_PROCESSOR_PATH, ".bundled");
3277
- if (existsSync4(coreBundleMarker)) {
3278
- return LAMBDA_EVENT_PROCESSOR_PATH;
3279
- }
3280
- }
3281
- if (functionName === "sms-event-processor") {
3282
- const coreBundleMarker = join4(LAMBDA_SMS_EVENT_PROCESSOR_PATH, ".bundled");
3283
- if (existsSync4(coreBundleMarker)) {
3284
- return LAMBDA_SMS_EVENT_PROCESSOR_PATH;
3285
- }
3286
- }
3287
3275
  const packageRoot = getPackageRoot();
3288
3276
  const distLambdaPath = join4(packageRoot, "dist", "lambda", functionName);
3289
3277
  const distBundleMarker = join4(distLambdaPath, ".bundled");
@@ -3458,7 +3446,6 @@ var init_lambda = __esm({
3458
3446
  "src/infrastructure/resources/lambda.ts"() {
3459
3447
  "use strict";
3460
3448
  init_esm_shims();
3461
- init_dist();
3462
3449
  }
3463
3450
  });
3464
3451