From c9bacaeb5e8eebeaa261dd11ddfbf7f3d21496f0 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Tue, 21 Jul 2026 13:14:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8(y-provider)=20adapt=20build=20comm?= =?UTF-8?q?and=20to=20tsc-alias=20upgrade?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent upgrade of tsc-alias introduced a breaking change in the build command, which now requires the `--project` flag to specify the path to the tsconfig file. --- src/frontend/servers/y-provider/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/servers/y-provider/package.json b/src/frontend/servers/y-provider/package.json index 200916204..124271628 100644 --- a/src/frontend/servers/y-provider/package.json +++ b/src/frontend/servers/y-provider/package.json @@ -6,7 +6,7 @@ "license": "MIT", "type": "module", "scripts": { - "build": "tsc -p tsconfig.build.json && tsc-alias", + "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json", "dev": "cross-env COLLABORATION_LOGGING=true && nodemon --config nodemon.json", "start": "node ./dist/start-server.js", "lint": "eslint",