Skip to content

Commit

Permalink
Merge pull request #4377 from activepieces/fix/dx
Browse files Browse the repository at this point in the history
fix(turbowtach): show compilation error for pieces
  • Loading branch information
abuaboud committed Apr 7, 2024
2 parents f6f6ee8 + 41b8ff7 commit 7834210
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/pieces/community/webhook/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "@activepieces/piece-webhook",
"version": "0.1.0"
"version": "0.1.1"
}
2 changes: 2 additions & 0 deletions packages/pieces/community/webhook/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
import { catchWebhook } from './lib/triggers/catch-hook';
import { PieceCategory } from '@activepieces/shared';

export const webhook = createPiece({
displayName: 'Webhook',
description: 'Receive HTTP requests and trigger flows using unique URLs.',
auth: PieceAuth.None(),
categories: [PieceCategory.CORE],
minimumSupportedRelease: '0.22.0',
logoUrl: 'https://cdn.activepieces.com/pieces/webhook.svg',
authors: ['abuaboud', 'pfernandez98'],
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/pieces/turbowatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function main() {
);
exec(`nx run-many -t build --projects=${piecePackageName} --skip-nx-cache`, (error, stdout, stderr) => {
if (error || stderr) {
console.error(chalk.red.bold('Failed to run turbowatch...', error, stderr));
console.error(chalk.red.bold('Failed to run turbowatch...', stdout, stderr));
return;
}
// Print a fancy message to the console using chalk
Expand Down

0 comments on commit 7834210

Please sign in to comment.