2024-02-07 01:59:58 -05:00
|
|
|
{
|
|
|
|
"name": "plugins-styles",
|
|
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
|
|
"sourceRoot": "plugins-styles/src",
|
|
|
|
"projectType": "library",
|
|
|
|
"targets": {
|
|
|
|
"build": {
|
2024-03-27 07:57:02 -05:00
|
|
|
"command": "node tools/scripts/build-css.mjs",
|
2024-02-07 01:59:58 -05:00
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/plugins-styles"
|
|
|
|
}
|
|
|
|
},
|
2024-03-27 07:57:02 -05:00
|
|
|
"publish": {
|
|
|
|
"command": "node tools/scripts/publish.mjs plugins-styles {args.ver} {args.tag}",
|
|
|
|
"dependsOn": ["build"]
|
|
|
|
},
|
2024-02-07 01:59:58 -05:00
|
|
|
"lint": {
|
2024-05-07 03:28:40 -05:00
|
|
|
"command": "echo 0"
|
2024-02-07 01:59:58 -05:00
|
|
|
}
|
|
|
|
},
|
2024-03-07 08:09:41 -05:00
|
|
|
"tags": ["type:ui"]
|
2024-02-07 01:59:58 -05:00
|
|
|
}
|