Files
twenty/packages/twenty-zapier/project.json
2025-01-09 18:43:30 +01:00

33 lines
797 B
JSON

{
"name": "twenty-zapier",
"projectType": "application",
"tags": ["scope:zapier"],
"targets": {
"build": {
"outputs": ["{projectRoot}/lib"],
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"commands": ["nx run twenty-zapier:clean && tsc"]
},
"dependsOn": ["^build"]
},
"clean": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"commands": ["rimraf ./lib ./build"]
}
},
"deploy": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"commands": [
"nx run twenty-zapier:build && cp -r ../twenty-shared/ node_modules/twenty-shared && zapier push --skip-npm-install"
]
}
}
}
}