From 50076b317dd24ece200f947c1403583a3f530ac6 Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Tue, 22 Oct 2024 15:54:37 +0400 Subject: [PATCH] Build all modules and types on `yarn build:ts` command --- ghost/custom-fonts/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/custom-fonts/package.json b/ghost/custom-fonts/package.json index e39ca10893..2ec8685d58 100644 --- a/ghost/custom-fonts/package.json +++ b/ghost/custom-fonts/package.json @@ -17,9 +17,10 @@ "scripts": { "dev": "tsc --watch --preserveWatchOutput --sourceMap", "build": "yarn build:cjs && yarn build:esm && yarn build:ts", + "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./build/types", "build:cjs": "tsc -p tsconfig.json --outDir ./build/cjs --module CommonJS", "build:esm": "tsc -p tsconfig.esm.json --outDir ./build/esm --module ES2020", - "build:ts": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./build/types", + "build:ts": "yarn build:cjs && yarn build:esm && yarn build:types", "prepare": "yarn build", "test:unit": "NODE_ENV=testing c8 --src src --all --check-coverage --100 --reporter text --reporter cobertura mocha -r ts-node/register './test/**/*.test.ts'", "test": "yarn test:ts && yarn test:unit",