Skip to content

Commit aaf52e6

Browse files
committed
fix: replace yarn with bun in package scripts
Fixes CI publish failure by ensuring scripts use the correct package manager (bun).
1 parent 8a31198 commit aaf52e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"!**/.*"
3535
],
3636
"scripts": {
37-
"example": "yarn workspace react-native-libprisma-example",
37+
"example": "bun workspace react-native-libprisma-example",
3838
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
3939
"embed-grammars": "node scripts/embed-grammars.js",
40-
"prepare": "yarn embed-grammars && bob build",
40+
"prepare": "bun run embed-grammars && bob build",
4141
"typecheck": "tsc",
4242
"lint": "eslint \"**/*.{js,ts,tsx}\"",
4343
"release": "release-it --only-version",
@@ -178,4 +178,4 @@
178178
],
179179
"version": "0.55.1"
180180
}
181-
}
181+
}

0 commit comments

Comments
 (0)