- Add Activepieces fork with SmoothSchedule custom piece - Create integrations app with Activepieces service layer - Add embed token endpoint for iframe integration - Create Automations page with embedded workflow builder - Add sidebar visibility fix for embed mode - Add list inactive customers endpoint to Public API - Include SmoothSchedule triggers: event created/updated/cancelled - Include SmoothSchedule actions: create/update/cancel events, list resources/services/customers 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
85 lines
2.0 KiB
JSON
85 lines
2.0 KiB
JSON
{
|
|
"name": "engine",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/engine/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/webpack:webpack",
|
|
"outputs": [
|
|
"{options.outputPath}"
|
|
],
|
|
"options": {
|
|
"target": "node",
|
|
"compiler": "tsc",
|
|
"outputPath": "dist/packages/engine",
|
|
"main": "packages/engine/src/main.ts",
|
|
"tsConfig": "packages/engine/tsconfig.lib.json",
|
|
"assets": [],
|
|
"webpackConfig": "packages/engine/webpack.config.js",
|
|
"babelUpwardRootMode": true,
|
|
"statsJson": false,
|
|
"sourceMap": true
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"optimization": true,
|
|
"extractLicenses": true,
|
|
"inspect": false,
|
|
"statsJson": false
|
|
}
|
|
}
|
|
},
|
|
"serve": {
|
|
"executor": "@nx/js:node",
|
|
"options": {
|
|
"buildTarget": "engine:build",
|
|
"inspect": false
|
|
}
|
|
},
|
|
"publish": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "node tools/scripts/publish.mjs engine {args.ver} {args.tag}"
|
|
},
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": [
|
|
"{options.outputFile}"
|
|
],
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"packages/engine/**/*.ts"
|
|
]
|
|
}
|
|
},
|
|
"build-pieces-for-testing": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
"npx nx run-many --target=build --projects=pieces-http,pieces-data-mapper,pieces-approval,pieces-webhook,shared"
|
|
],
|
|
"parallel": false
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": [
|
|
"{workspaceRoot}/coverage/{projectRoot}"
|
|
],
|
|
"options": {
|
|
"jestConfig": "packages/engine/jest.config.ts",
|
|
"silent": true
|
|
},
|
|
"dependsOn": [
|
|
"build-pieces-for-testing",
|
|
"build"
|
|
]
|
|
}
|
|
}
|
|
} |