Some checks failed
Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
29 lines
860 B
JSON
29 lines
860 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"root": "packages/module-api",
|
|
"targets": {
|
|
"build": {
|
|
"cache": true,
|
|
"executor": "nx:run-commands",
|
|
"inputs": ["src"],
|
|
"outputs": ["{projectRoot}/lib"],
|
|
"options": {
|
|
"commands": ["vite build", "api-extractor run"],
|
|
"parallel": false,
|
|
"cwd": "packages/module-api"
|
|
}
|
|
},
|
|
"start": {
|
|
"command": "vite build --watch",
|
|
"options": { "cwd": "packages/module-api" },
|
|
"dependsOn": ["^start"],
|
|
"continuous": true
|
|
},
|
|
"lint:types": {
|
|
"command": "pnpm exec tsc --noEmit",
|
|
"options": { "cwd": "packages/module-api" }
|
|
}
|
|
}
|
|
}
|