Skip to content

Commit

Permalink
bump bun
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Nov 8, 2023
1 parent 518b93f commit 99cb021
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 29 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ jobs:
strategy:
fail-fast: false
matrix:
package:
[
package: [
# "packages/torii-wasm",
# "packages/torii-client",
"packages/create-burner",
"packages/utils",
"packages/core",
"packages/react"
"packages/react",
]

steps:
Expand All @@ -45,6 +44,10 @@ jobs:

- uses: oven-sh/setup-bun@v1

- name: Bun Link
run: |
bun install && bun link
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "dojo-packages",
"version": "1.0.0",
"workspaces": [
"examples/react-app",
"examples/react-phaser-example",
"packages/create-burner",
"packages/core",
"packages/utils",
"packages/torii-client",
"packages/torii-wasm",
"packages/react"
],
"devDependencies": {
"prettier": "^3.0.3"
},
"scripts": {
"build-core": "bun run --cwd packages/core build",
"build-create-burner": "bun run --cwd packages/create-burner build",
"build-utils": "bun run --cwd packages/utils build",
"build-torii-client": "bun run --cwd packages/torii-client build",
"build-torii-wasm": "bun run --cwd packages/torii-wasm build",
"build-react": "bun run --cwd packages/react build",
"build-phaser": "bun run --cwd examples/react-phaser-example build",
"build": "bun run build-core && bun run build-create-burner && bun run build-utils && bun run build-torii-client && bun run build-torii-wasm",
"clean": "rm -rf node_modules packages/create-burner/node_modules packages/core/node_modules packages/utils/node_modules packages/torii-client/node_modules packages/torii-wasm/node_modules packages/react/node_modules bun.lockb packages/create-burner/bun.lockb packages/core/bun.lockb packages/utils/bun.lockb packages/torii-client/bun.lockb packages/torii-wasm/bun.lockb packages/react/bun.lockb && rm -rf examples/react-app/node_modules examples/react-app/bun.lockb examples/react-phaser-example/node_modules examples/react-phaser-example/bun.lockb"
}
"name": "dojo-packages",
"version": "1.0.0",
"workspaces": [
"examples/react-app",
"examples/react-phaser-example",
"packages/create-burner",
"packages/core",
"packages/utils",
"packages/torii-client",
"packages/torii-wasm",
"packages/react"
],
"devDependencies": {
"prettier": "^3.0.3"
},
"scripts": {
"build-core": "bun run --cwd packages/core build",
"build-create-burner": "bun run --cwd packages/create-burner build",
"build-utils": "bun run --cwd packages/utils build",
"build-torii-client": "bun run --cwd packages/torii-client build",
"build-torii-wasm": "bun run --cwd packages/torii-wasm build",
"build-react": "bun run --cwd packages/react build",
"build-phaser": "bun run --cwd examples/react-phaser-example build",
"build": "bun run build-core && bun run build-create-burner && bun run build-utils && bun run build-torii-client && bun run build-torii-wasm",
"clean": "rm -rf node_modules packages/create-burner/node_modules packages/core/node_modules packages/utils/node_modules packages/torii-client/node_modules packages/torii-wasm/node_modules packages/react/node_modules bun.lockb packages/create-burner/bun.lockb packages/core/bun.lockb packages/utils/bun.lockb packages/torii-client/bun.lockb packages/torii-wasm/bun.lockb packages/react/bun.lockb && rm -rf examples/react-app/node_modules examples/react-app/bun.lockb examples/react-phaser-example/node_modules examples/react-phaser-example/bun.lockb"
}
}

0 comments on commit 99cb021

Please sign in to comment.