build: add nx configuration in libs/key-management (#16548)

pull/16584/head
Addison Beck 8 months ago committed by GitHub
parent daae86ef57
commit 7d6ff4394d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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"
}
}
}
}
Loading…
Cancel
Save