mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
36 lines
782 B
JSON
36 lines
782 B
JSON
{
|
|
"name": "@bitwarden/ui-common",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/ui/common/src",
|
|
"projectType": "library",
|
|
"tags": ["scope:ui-common", "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/ui/common/**/*.ts"]
|
|
}
|
|
}
|
|
}
|
|
}
|