From 658adf0ab1257238b6ca834c9740fbb3cc36fcde Mon Sep 17 00:00:00 2001 From: Naz Date: Tue, 25 Jul 2023 12:04:03 +0800 Subject: [PATCH] Fixed build command for nql-filter-expansions no issue - The newly generated package did not have the build:ts command needed for nx build to run --- ghost/nql-filter-expansions/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ghost/nql-filter-expansions/package.json b/ghost/nql-filter-expansions/package.json index da48c78c3c..cb769a49c6 100644 --- a/ghost/nql-filter-expansions/package.json +++ b/ghost/nql-filter-expansions/package.json @@ -7,9 +7,8 @@ "main": "build/index.js", "types": "build/index.d.ts", "scripts": { - "dev": "tsc --watch --preserveWatchOutput --sourceMap", "build": "tsc", - "prepare": "tsc", + "build:ts": "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:types && yarn test:unit", "test:types": "tsc --noEmit",