Files
z-elements/libs/panels/bottom-panel/project.json
2024-08-02 13:57:10 +02:00

79 lines
1.9 KiB
JSON

{
"name": "panels-bottom-panel",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/panels/bottom-panel/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/libs/panels/bottom-panel",
"main": "libs/panels/bottom-panel/src/index.ts",
"tsConfig": "libs/panels/bottom-panel/tsconfig.lib.json",
"assets": [
"libs/panels/bottom-panel/*.md"
]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": [
"{options.outputFile}"
],
"options": {
"lintFilePatterns": [
"libs/panels/bottom-panel/**/*.ts",
"libs/panels/bottom-panel/package.json"
]
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": [
"{workspaceRoot}/coverage/libs/panels/bottom-panel"
],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../../coverage/libs/panels/bottom-panel"
}
},
"storybook": {
"executor": "@nx/storybook:storybook",
"options": {
"port": 4400,
"configDir": "libs/panels/bottom-panel/.storybook"
},
"configurations": {
"ci": {
"quiet": true
}
}
},
"build-storybook": {
"executor": "@nx/storybook:build",
"outputs": [
"{options.outputDir}"
],
"options": {
"outputDir": "dist/storybook/panels-bottom-panel",
"configDir": "libs/panels/bottom-panel/.storybook"
},
"configurations": {
"ci": {
"quiet": true
}
}
},
"test-storybook": {
"executor": "nx:run-commands",
"options": {
"command": "test-storybook -c libs/panels/bottom-panel/.storybook --url=http://localhost:4400"
}
}
},
"tags": []
}