Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
Loading