@geekmidas/cli 1.10.13 → 1.10.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @geekmidas/cli
2
2
 
3
+ ## 1.10.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 🐛 Fix smtp resolution ports
8
+
3
9
  ## 1.10.13
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -35,7 +35,7 @@ const prompts = require_chunk.__toESM(require("prompts"));
35
35
 
36
36
  //#region package.json
37
37
  var name = "@geekmidas/cli";
38
- var version = "1.10.12";
38
+ var version = "1.10.13";
39
39
  var description = "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs";
40
40
  var private$1 = false;
41
41
  var type = "module";
@@ -3064,8 +3064,8 @@ services:
3064
3064
  environment:
3065
3065
  MP_SMTP_AUTH: \${SMTP_USER:-${imageName}}:\${SMTP_PASS:-${imageName}}
3066
3066
  ports:
3067
- - "\${MAILPIT_UI_PORT:-8025}:8025" # Web UI
3068
- - "\${MAILPIT_SMTP_PORT:-1025}:1025" # SMTP
3067
+ - "\${MAILPIT_PORT:-8025}:8025" # Web UI / API
3068
+ - "\${SMTP_PORT:-1025}:1025" # SMTP
3069
3069
  healthcheck:
3070
3070
  test: ["CMD", "wget", "-q", "--spider", "http://localhost:8025"]
3071
3071
  interval: 5s
@@ -3199,8 +3199,8 @@ services:
3199
3199
  environment:
3200
3200
  MP_SMTP_AUTH: \${SMTP_USER:-${workspace.name}}:\${SMTP_PASS:-${workspace.name}}
3201
3201
  ports:
3202
- - "\${MAILPIT_UI_PORT:-8025}:8025" # Web UI
3203
- - "\${MAILPIT_SMTP_PORT:-1025}:1025" # SMTP
3202
+ - "\${MAILPIT_PORT:-8025}:8025" # Web UI / API
3203
+ - "\${SMTP_PORT:-1025}:1025" # SMTP
3204
3204
  healthcheck:
3205
3205
  test: ["CMD", "wget", "-q", "--spider", "http://localhost:8025"]
3206
3206
  interval: 5s
@@ -7219,8 +7219,8 @@ function generateDockerFiles(options, template, dbApps) {
7219
7219
  container_name: ${options.name}-mailpit
7220
7220
  restart: unless-stopped
7221
7221
  ports:
7222
- - '\${MAILPIT_SMTP_HOST_PORT:-1025}:1025'
7223
- - '\${MAILPIT_UI_HOST_PORT:-8025}:8025'
7222
+ - '\${SMTP_PORT:-1025}:1025'
7223
+ - '\${MAILPIT_PORT:-8025}:8025'
7224
7224
  environment:
7225
7225
  MP_SMTP_AUTH: \${SMTP_USER:-${options.name}}:\${SMTP_PASS:-${options.name}}`);
7226
7226
  if (options.services?.storage) {