Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion components/typeflo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/typeflo",
"version": "0.1.0",
"version": "0.1.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Patch bump looks right for a packaging fix; ensure release notes and validation run.

This is a packaging-only change, so 0.1.1 is appropriate. Please update the CHANGELOG/release notes and run the package validation to confirm the fix.


🏁 Script executed:

#!/bin/bash
set -euo pipefail
# Validate the single package
npm run validate:package -- @pipedream/typeflo
# Optional: verbose validation across packages (helps catch cross-package drift)
npm run validate:packages:verbose

Length of output: 79589


Fix missing dependency and validation errors
components/typeflo/package.json: add "@pipedream/platform" to dependencies, then rerun npm run validate:package -- @pipedream/typeflo until import test passes.

🤖 Prompt for AI Agents
In components/typeflo/package.json around line 3, the package is missing a
runtime dependency which causes validation/import failures; add
"@pipedream/platform" to the "dependencies" section (not devDependencies), save
the file, run npm install, then rerun npm run validate:package --
@pipedream/typeflo and repeat fixing any remaining import/validation errors
until the import test passes.

"description": "Pipedream Typeflo Components",
"main": "typeflo.app.mjs",
"keywords": [
Expand All @@ -11,5 +11,8 @@
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pipedream/platform": "^3.1.0"
}
}
11 changes: 8 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading