mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-02-02 20:39:26 -05:00
28 lines
663 B
JSON
28 lines
663 B
JSON
|
{
|
||
|
"name": "plugins-styles",
|
||
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "plugins-styles/src",
|
||
|
"projectType": "library",
|
||
|
"targets": {
|
||
|
"build": {
|
||
|
"executor": "@nx/vite:build",
|
||
|
"outputs": ["{options.outputPath}"],
|
||
|
"options": {
|
||
|
"outputPath": "dist/plugins-styles"
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"executor": "@nx/eslint:lint",
|
||
|
"outputs": ["{options.outputFile}"]
|
||
|
},
|
||
|
"test": {
|
||
|
"executor": "@nx/jest:jest",
|
||
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||
|
"options": {
|
||
|
"jestConfig": "plugins-styles/jest.config.ts"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tags": []
|
||
|
}
|