@wraps.dev/cli 2.17.4 → 2.17.5

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.
@@ -1 +1 @@
1
- Built at: 2026-02-27T23:36:52.907Z
1
+ Built at: 2026-03-02T16:08:05.801Z
@@ -1 +1 @@
1
- Built at: 2026-02-27T23:36:52.979Z
1
+ Built at: 2026-03-02T16:08:05.886Z
@@ -103,7 +103,10 @@ export async function handler(event: S3Event, context: Context) {
103
103
 
104
104
  if (headers[key] != null) {
105
105
  // Multiple values for same header — combine strings, keep first object
106
- if (typeof headers[key] === "string" && typeof headerValue === "string") {
106
+ if (
107
+ typeof headers[key] === "string" &&
108
+ typeof headerValue === "string"
109
+ ) {
107
110
  headers[key] = `${headers[key]}, ${headerValue}`;
108
111
  }
109
112
  } else {
@@ -1 +1 @@
1
- Built at: 2026-02-27T23:36:52.912Z
1
+ Built at: 2026-03-02T16:08:05.806Z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wraps.dev/cli",
3
- "version": "2.17.4",
3
+ "version": "2.17.5",
4
4
  "description": "CLI for deploying Wraps email infrastructure to your AWS account",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",
@@ -86,8 +86,8 @@
86
86
  "tsx": "4.20.6",
87
87
  "typescript": "^5.9.3",
88
88
  "vitest": "^4.0.7",
89
- "@wraps/core": "0.1.0",
90
- "@wraps/email-check": "1.0.0"
89
+ "@wraps/email-check": "1.0.0",
90
+ "@wraps/core": "0.1.0"
91
91
  },
92
92
  "engines": {
93
93
  "node": ">=20.0.0"