@benzotti/jedi 0.1.40 → 0.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action/workflow-template.yml +9 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -54,6 +54,11 @@ jobs:
|
|
|
54
54
|
|| (github.event_name == 'pull_request_review' && contains(github.event.review.body, 'Hey Jedi'))
|
|
55
55
|
runs-on: ubuntu-latest
|
|
56
56
|
steps:
|
|
57
|
+
# Bun is required to run the Jedi CLI
|
|
58
|
+
- uses: oven-sh/setup-bun@v2
|
|
59
|
+
with:
|
|
60
|
+
bun-version: latest
|
|
61
|
+
|
|
57
62
|
# Resolve the PR head branch
|
|
58
63
|
# - issue_comment: github.head_ref is empty, resolve via API
|
|
59
64
|
# - pull_request_review / pull_request_review_comment: github.event.pull_request.head.ref is available
|
|
@@ -91,11 +96,6 @@ jobs:
|
|
|
91
96
|
restore-keys: |
|
|
92
97
|
jedi-state-${{ github.repository }}-main
|
|
93
98
|
|
|
94
|
-
# Bun is required to run the Jedi CLI
|
|
95
|
-
- uses: oven-sh/setup-bun@v2
|
|
96
|
-
with:
|
|
97
|
-
bun-version: latest
|
|
98
|
-
|
|
99
99
|
# Bootstrap Jedi framework if not present (first run or cache miss)
|
|
100
100
|
- name: Bootstrap Jedi
|
|
101
101
|
run: |
|
|
@@ -170,6 +170,10 @@ jobs:
|
|
|
170
170
|
if: github.event_name == 'push'
|
|
171
171
|
runs-on: ubuntu-latest
|
|
172
172
|
steps:
|
|
173
|
+
- uses: oven-sh/setup-bun@v2
|
|
174
|
+
with:
|
|
175
|
+
bun-version: latest
|
|
176
|
+
|
|
173
177
|
- name: Check if Jedi was involved
|
|
174
178
|
id: check
|
|
175
179
|
run: |
|
package/dist/index.js
CHANGED
|
@@ -12791,7 +12791,7 @@ var stateCommand = defineCommand({
|
|
|
12791
12791
|
// package.json
|
|
12792
12792
|
var package_default = {
|
|
12793
12793
|
name: "@benzotti/jedi",
|
|
12794
|
-
version: "0.1.
|
|
12794
|
+
version: "0.1.41",
|
|
12795
12795
|
description: "JDI - Context-efficient AI development framework for Claude Code",
|
|
12796
12796
|
type: "module",
|
|
12797
12797
|
bin: {
|