mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-23 07:08:47 -05:00
35 lines
829 B
JSON
35 lines
829 B
JSON
|
{
|
||
|
"name": "plugins-runtime",
|
||
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "plugins-runtime/src",
|
||
|
"projectType": "library",
|
||
|
"targets": {
|
||
|
"build": {
|
||
|
"executor": "@nx/vite:build",
|
||
|
"outputs": ["{options.outputPath}"],
|
||
|
"options": {
|
||
|
"outputPath": "dist/plugins-runtime"
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"executor": "@nx/vite:test",
|
||
|
"outputs": ["{options.reportsDirectory}"],
|
||
|
"options": {
|
||
|
"reportsDirectory": "../coverage/plugins-runtime"
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"executor": "@nx/eslint:lint",
|
||
|
"outputs": ["{options.outputFile}"]
|
||
|
},
|
||
|
"serve": {
|
||
|
"executor": "@nx/web:file-server",
|
||
|
"options": {
|
||
|
"buildTarget": "build",
|
||
|
"staticFilePath": "dist/plugins-runtime"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tags": []
|
||
|
}
|