@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 +6 -0
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/dev/__tests__/index.spec.ts +4 -4
- package/src/docker/__tests__/compose.spec.ts +2 -2
- package/src/docker/compose.ts +4 -4
- package/src/init/__tests__/generators.spec.ts +2 -4
- package/src/init/generators/docker.ts +2 -2
- package/src/test/__tests__/__fixtures__/workspace.ts +2 -2
package/dist/index.mjs
CHANGED
|
@@ -35,7 +35,7 @@ import prompts from "prompts";
|
|
|
35
35
|
|
|
36
36
|
//#region package.json
|
|
37
37
|
var name = "@geekmidas/cli";
|
|
38
|
-
var version = "1.10.
|
|
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
|
-
- "\${
|
|
3068
|
-
- "\${
|
|
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
|
-
- "\${
|
|
3203
|
-
- "\${
|
|
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
|
-
- '\${
|
|
7223
|
-
- '\${
|
|
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) {
|