create-aomex 0.0.45 → 0.0.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aomex",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "repository": "git@github.com:aomex/create-aomex.git",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,16 +18,6 @@ services:
18
18
  interval: 3s
19
19
  timeout: 5s
20
20
  retries: 10
21
- mongo:
22
- image: mongo:7
23
- environment:
24
- MONGO_INITDB_ROOT_USERNAME: root
25
- MONGO_INITDB_ROOT_PASSWORD: abcde
26
- volumes:
27
- - ./volumes/mongo:/data/db
28
- ports:
29
- - 27017:27017
30
- command: --logpath /dev/null
31
21
  redis:
32
22
  image: redis:7
33
23
  volumes:
@@ -3,7 +3,7 @@
3
3
  set -ex
4
4
 
5
5
  corepack enable # package.json => packageManager
6
- pnpm install --no-prod
6
+ pnpm install --no-prod --frozen-lockfile
7
7
  pnpm exec prisma generate
8
8
  pnpm exec tsc
9
9
  pnpm exec tsc-alias --resolve-full-paths
@@ -1,7 +1,7 @@
1
1
  import { execSync, spawn } from 'node:child_process';
2
2
  import process from 'node:process';
3
3
 
4
- execSync('docker compose -f docker-compose.yml down --timestamps', { stdio: 'inherit' });
4
+ execSync('docker compose -f docker-compose.yml down', { stdio: 'inherit' });
5
5
 
6
6
  const docker = spawn('docker compose -f docker-compose.yml up --wait', {
7
7
  stdio: ['inherit', 'inherit', 'pipe'],