You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,21 +77,21 @@ Install all node modules (including the examples)
77
77
78
78
```sh
79
79
cd package
80
-
yarn
80
+
bun i
81
81
```
82
82
83
83
And finally build filament and bullet3:
84
84
85
85
```sh
86
86
# Inside ./package
87
-
yarn build-bullet3
88
-
yarn build-filament:release # or yarn build-filament:debug
87
+
bun build-bullet3
88
+
bun build-filament:release # or yarn build-filament:debug
89
89
```
90
90
91
91
You can then build one of the example apps in `package/example/AppExamplePaper` or `package/example/AppExampleFabric`.
92
92
93
93
Note: If building filament fails for you, you can download the pre-built binaries from the npm package.
94
-
Simply run `yarn setup-filament-quick`. The binaries will be in release build and any edits in /filament will be ignored (as you're not building from source in this case).
94
+
Simply run `bun setup-filament-quick`. The binaries will be in release build and any edits in /filament will be ignored (as you're not building from source in this case).
0 commit comments