2024-03-27 13:57:02 +01:00
|
|
|
{
|
|
|
|
"name": "plugin-types",
|
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
|
|
"sourceRoot": "libs/plugin-types",
|
|
|
|
"projectType": "library",
|
|
|
|
"targets": {
|
2024-05-17 12:52:42 +02:00
|
|
|
"lint": {
|
2024-06-03 08:25:52 +02:00
|
|
|
"command": "tsc -p {projectRoot} --noEmit"
|
2024-05-17 12:52:42 +02:00
|
|
|
},
|
2024-03-27 13:57:02 +01:00
|
|
|
"build": {
|
|
|
|
"command": "node tools/scripts/build-types.mjs",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/plugin-types"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"publish": {
|
|
|
|
"command": "node tools/scripts/publish.mjs plugin-types {args.ver} {args.tag}",
|
|
|
|
"dependsOn": ["build"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"tags": ["type:ui"]
|
|
|
|
}
|