From 7d6ff4394da14cb2a413bd05084f0c853db1c4f4 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Wed, 24 Sep 2025 13:24:17 -0400 Subject: [PATCH] build: add nx configuration in libs/key-management (#16548) --- libs/key-management/project.json | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 libs/key-management/project.json diff --git a/libs/key-management/project.json b/libs/key-management/project.json new file mode 100644 index 0000000000..1833e2a79a --- /dev/null +++ b/libs/key-management/project.json @@ -0,0 +1,41 @@ +{ + "name": "@bitwarden/key-management", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/key-management/src", + "projectType": "library", + "tags": ["scope:key-management", "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/**/*.ts"] + } + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + } + } + } +}