Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "ts-node src/index.ts",
"start-write-api": "node dist/index.js writeApi",
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/command/domain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.ts",
"scripts": {
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/group-chat/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/command/interface-adaptor-if/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.ts",
"scripts": {
"build": "tsc && rm -f dist/internal/*.test.d.ts && rm -f dist/internal/*.test.js && rm -fr dist/internal/test",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"fix": "biome format --write ./src",
"clean": "rimraf ./dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/command/interface-adaptor-impl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.ts",
"scripts": {
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/repository/group-chat/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/command/processor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.ts",
"scripts": {
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/group-chat/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "ts-node src/index.ts",
"start-write-api": "node dist/index.js writeApi",
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/query/interface-adaptor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"prisma:generate": "prisma generate",
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
2 changes: 1 addition & 1 deletion packages/rmu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"prisma:generate": "prisma generate",
"build": "tsc && rimraf dist/internal/*.test.d.ts && rimraf dist/internal/*.test.js && rimraf dist/internal/test && rimraf dist/*.test.*",
"test": "jest --no-cache",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"format": "biome format ./src",
Expand Down
6 changes: 5 additions & 1 deletion tools/docker-compose/docker-compose-databases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ services:
hostname: mysql-local
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci --ngram_token_size=2
healthcheck:
test: MYSQL_PWD=passwd mysql -h127.0.0.1 -P3306 -uroot -e "quit"
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-u", "root", "-ppasswd"]
interval: 10s
timeout: 5s
retries: 10
start_period: 30s
ports:
- 33306:3306
environment:
Expand Down
Loading