41 lines
922 B
JSON
41 lines
922 B
JSON
|
{
|
||
|
"name": "euterpe",
|
||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "packages/euterpe/src",
|
||
|
"projectType": "library",
|
||
|
"targets": {
|
||
|
"build": {
|
||
|
"executor": "@nx/js:tsc",
|
||
|
"outputs": [
|
||
|
"{options.outputPath}"
|
||
|
],
|
||
|
"options": {
|
||
|
"outputPath": "dist/packages/euterpe",
|
||
|
"main": "packages/euterpe/src/index.ts",
|
||
|
"tsConfig": "packages/euterpe/tsconfig.lib.json",
|
||
|
"assets": [
|
||
|
"packages/euterpe/*.md"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"publish": {
|
||
|
"command": "node tools/scripts/publish.mjs euterpe {args.ver} {args.tag}",
|
||
|
"dependsOn": [
|
||
|
"build"
|
||
|
]
|
||
|
},
|
||
|
"lint": {
|
||
|
"executor": "@nx/linter:eslint",
|
||
|
"outputs": [
|
||
|
"{options.outputFile}"
|
||
|
],
|
||
|
"options": {
|
||
|
"lintFilePatterns": [
|
||
|
"packages/euterpe/**/*.ts"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tags": []
|
||
|
}
|