From 3ec54d092e714d41a2f4b379e1f4ad74a3a77f99 Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Mon, 23 Oct 2023 16:57:01 -0400 Subject: [PATCH] fix: add build step back --- lib/shared/config-manager/project.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/shared/config-manager/project.json b/lib/shared/config-manager/project.json index b6a01095b..3c2662afd 100644 --- a/lib/shared/config-manager/project.json +++ b/lib/shared/config-manager/project.json @@ -4,6 +4,17 @@ "sourceRoot": "lib/shared/config-manager/src", "projectType": "library", "targets": { + "build": { + "executor": "@nx/js:tsc", + "outputs": ["{options.outputPath}"], + "options": { + "outputPath": "dist/lib/shared/config-manager", + "main": "lib/shared/config-manager/src/index.ts", + "tsConfig": "lib/shared/config-manager/tsconfig.lib.json", + "assets": ["lib/shared/config-manager/*.md"], + "external": ["shared-types", "js-cloud-server-sdk"] + } + }, "lint": { "executor": "@nx/linter:eslint", "outputs": ["{options.outputFile}"],