From 7865bb5e125fe3761524a584cad4ba56b09641b0 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Tue, 23 Sep 2025 14:54:40 -0400 Subject: [PATCH] build: add nx configuration in libs/key-management-ui (#16549) --- libs/key-management-ui/project.json | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 libs/key-management-ui/project.json diff --git a/libs/key-management-ui/project.json b/libs/key-management-ui/project.json new file mode 100644 index 00000000000..2e311d209d3 --- /dev/null +++ b/libs/key-management-ui/project.json @@ -0,0 +1,41 @@ +{ + "name": "@bitwarden/key-management-ui", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/key-management-ui/src", + "projectType": "library", + "tags": ["scope:key-management-ui", "type:lib"], + "targets": { + "build": { + "executor": "nx:run-script", + "dependsOn": [], + "options": { + "script": "build" + } + }, + "build:watch": { + "executor": "nx:run-script", + "options": { + "script": "build:watch" + } + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + } + }, + "lint": { + "executor": "@nx/eslint:lint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["libs/key-management-ui/**/*.ts"] + } + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + } + } + } +}