create-aomex 0.0.44 → 0.0.46

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.44",
3
+ "version": "0.0.46",
4
4
  "repository": "git@github.com:aomex/create-aomex.git",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -10,4 +10,4 @@ ENV NODE_ENV=integration
10
10
 
11
11
  RUN sh scripts/build-in-docker.sh
12
12
 
13
- CMD ["node", "--enable-source-maps", "src/web.js"]
13
+ CMD ["node", "--enable-source-maps", "--stack-trace-limit=100", "src/web.js"]
@@ -10,4 +10,4 @@ ENV NODE_ENV=production
10
10
 
11
11
  RUN sh scripts/build-in-docker.sh
12
12
 
13
- CMD ["node", "--enable-source-maps", "src/web.js"]
13
+ CMD ["node", "--enable-source-maps", "--stack-trace-limit=100", "src/web.js"]
@@ -3,7 +3,7 @@ import process from 'node:process';
3
3
 
4
4
  execSync('docker compose -f docker-compose.yml down', { stdio: 'inherit' });
5
5
 
6
- const docker = spawn('docker compose -f docker-compose.yml up --timestamps --wait', {
6
+ const docker = spawn('docker compose -f docker-compose.yml up --wait', {
7
7
  stdio: ['inherit', 'inherit', 'pipe'],
8
8
  shell: true,
9
9
  });
@@ -19,7 +19,7 @@ await new Promise((resolve) => {
19
19
  });
20
20
 
21
21
  const server = spawn(
22
- 'npx prisma migrate deploy && npx prisma generate && node --import tsx/esm --watch src/web.ts',
22
+ 'npx prisma generate && npx prisma migrate deploy && node --import tsx/esm --watch src/web.ts',
23
23
  { stdio: 'inherit', shell: true },
24
24
  );
25
25