Skip to content

Commit 6b547d8

Browse files
feat(evals): Establish explicit dependency on codebuff (npm-app)
This change updates the evals package configuration to correctly depend on the 'codebuff' package (the npm-app). It modifies evals/package.json to include 'codebuff' as a workspace dependency and updates evals/project.json to reflect this in its implicitDependencies. The bun.lock file is also updated accordingly. This ensures that Nx and Bun can correctly resolve and build the dependency tree, making the evals build process reliant on the codebuff package as intended. Generated with Codebuff 🤖 Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent c146e5f commit 6b547d8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

bun.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

evals/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"dependencies": {
1919
"@codebuff/integrations": "workspace:*",
2020
"async": "^3.2.6",
21-
"lodash": "^4.17.21"
21+
"lodash": "^4.17.21",
22+
"codebuff": "workspace:*"
2223
},
2324
"devDependencies": {
2425
"@types/async": "^3.2.24",

evals/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
}
3636
},
3737
"tags": [],
38-
"implicitDependencies": ["@codebuff/integrations"]
38+
"implicitDependencies": ["@codebuff/integrations", "codebuff"]
3939
}

0 commit comments

Comments
 (0)