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
12 changes: 12 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ jobs:
uses: ./.github/actions/setup
with:
install_dependencies: 'false'
- name: Inject pi peer dependency versions
run: |
pi_version=$(jq -r '.dependencies["@earendil-works/pi-agent-core"]' package.json)
jq --arg pi_version "$pi_version" '
.peerDependencies |= with_entries(
if .key | startswith("@earendil-works/pi-") and .key != "@earendil-works/pi-agent-core"
then .value = $pi_version
else .
end
)
' package.json > package.json.tmp
mv package.json.tmp package.json
- name: Normalize package-lock.json
run: npm install
- name: Commit
Expand Down
4 changes: 1 addition & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# Eval fixtures are standalone sample apps (Next.js, FastAPI, …), not wizard
# source — eslint already ignores them (eslint.config.ts), and prettier can't
# even parse some of their templates (Jinja in HTML errors its HTML parser).
# Eval fixtures are standalone sample apps with project local conventions.
eval/fixtures/
Loading
Loading