generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update oven-sh/setup-bun action and fix entrypoint in pack…
…age.json (#382) * chore(deps): update oven-sh/setup-bun action from vv1 to v2 * use bun-version-file * fix package.json and lockfile * fix package.json --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dan Adajian <[email protected]>
- Loading branch information
1 parent
9d25693
commit 231d0b0
Showing
4 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"name": "cypress-codegen", | ||
"packageManager": "[email protected].8", | ||
"main": "dist/index.cjs", | ||
"types": "dist/index.d.cts", | ||
"packageManager": "[email protected].17", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"bin": { | ||
"cypress-codegen": "dist/cli.cjs" | ||
"cypress-codegen": "dist/cli.js" | ||
}, | ||
"files": [ | ||
"dist", | ||
|
@@ -30,7 +30,7 @@ | |
"prettier": "3.3.2" | ||
}, | ||
"peerDependencies": { | ||
"cypress": ">=12" | ||
"cypress": ">=13" | ||
}, | ||
"devDependencies": { | ||
"@swc/jest": "0.2.36", | ||
|