mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-09 00:10:12 -05:00
22 lines
540 B
JSON
22 lines
540 B
JSON
{
|
|
"name": "plugin-types",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/plugin-types",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"lint": {
|
|
"command": "tsc --noEmit"
|
|
},
|
|
"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"]
|
|
}
|