From 66d4347f082fb080fb8d981edefa6dd31dc9bdb3 Mon Sep 17 00:00:00 2001 From: mizdra Date: Sun, 19 Jan 2025 01:04:55 +0900 Subject: [PATCH] chore: build project with project references --- packages/codegen/package.json | 2 +- packages/language-server/package.json | 2 +- packages/stylelint-plugin/package.json | 2 +- packages/ts-plugin/package.json | 2 +- packages/vscode/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/codegen/package.json b/packages/codegen/package.json index f0366b9..647d57e 100644 --- a/packages/codegen/package.json +++ b/packages/codegen/package.json @@ -21,7 +21,7 @@ } }, "scripts": { - "build": "tsc -p tsconfig.build.json", + "build": "tsc -b tsconfig.build.json", "dev": "npm run build && cd ../../example && node ../packages/codegen/bin/hcm.mjs" }, "engines": { diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 2bd5872..8d0b59b 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -14,7 +14,7 @@ "private": true, "main": "./dist/index.js", "scripts": { - "build": "tsc -p tsconfig.build.json" + "build": "tsc -b tsconfig.build.json" }, "engines": { "node": ">=22.0.0" diff --git a/packages/stylelint-plugin/package.json b/packages/stylelint-plugin/package.json index c03ac65..54fdfe4 100644 --- a/packages/stylelint-plugin/package.json +++ b/packages/stylelint-plugin/package.json @@ -14,7 +14,7 @@ "private": true, "main": "./dist/index.js", "scripts": { - "build": "tsc -p tsconfig.build.json" + "build": "tsc -b tsconfig.build.json" }, "engines": { "node": ">=22.0.0" diff --git a/packages/ts-plugin/package.json b/packages/ts-plugin/package.json index 1436eab..1b95d57 100644 --- a/packages/ts-plugin/package.json +++ b/packages/ts-plugin/package.json @@ -14,7 +14,7 @@ "private": true, "main": "./dist/index.js", "scripts": { - "build": "tsc -p tsconfig.build.json" + "build": "tsc -b tsconfig.build.json" }, "engines": { "node": ">=22.0.0" diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 7e65442..a879c40 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -15,7 +15,7 @@ "private": true, "main": "./dist/index.js", "scripts": { - "build": "tsc -p tsconfig.build.json" + "build": "tsc -b tsconfig.build.json" }, "engines": { "vscode": "^1.77.0"