mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-08 07:50:44 -05:00
22 lines
536 B
JSON
22 lines
536 B
JSON
{
|
|
"name": "plugins-styles",
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "plugins-styles/src",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build": {
|
|
"command": "node tools/scripts/build-css.mjs",
|
|
"options": {
|
|
"outputPath": "dist/plugins-styles"
|
|
}
|
|
},
|
|
"publish": {
|
|
"command": "node tools/scripts/publish.mjs plugins-styles {args.ver} {args.tag}",
|
|
"dependsOn": ["build"]
|
|
},
|
|
"lint": {
|
|
"command": "echo 0"
|
|
}
|
|
},
|
|
"tags": ["type:ui"]
|
|
}
|