-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69f8f0a
commit cb4e4f0
Showing
4 changed files
with
8,632 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"version": "0.0.0", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"npmClient": "pnpm" | ||
} |
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,33 +1,35 @@ | ||
{ | ||
"name": "dojo-packages", | ||
"version": "1.0.0", | ||
"workspaces": [ | ||
"examples/react-app", | ||
"examples/react-phaser-example", | ||
"packages/create-burner", | ||
"packages/create-dojo", | ||
"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-create-dojo": "bun run --cwd packages/create-dojo 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-watch": "bun run build-core --watch & bun run build-create-burner --watch & bun run build-create-dojo --watch & bun run build-utils --watch & bun run build-react --watch & bun run build-torii-wasm --watch & bun run build-torii-client --watch", | ||
"build": "bun run build-core && bun run build-create-burner && bun run build-create-dojo && bun run build-utils && bun run build-react && bun run build-torii-wasm && bun run build-torii-client", | ||
"clean": "rm -rf node_modules packages/create-burner/node_modules node_modules packages/create-dojo/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", | ||
"prettier-check": "bun x prettier --check .", | ||
"prettier": "bun x prettier --write ." | ||
} | ||
"name": "dojo-packages", | ||
"version": "1.0.0", | ||
"workspaces": [ | ||
"examples/react-app", | ||
"examples/react-phaser-example", | ||
"packages/create-burner", | ||
"packages/create-dojo", | ||
"packages/core", | ||
"packages/utils", | ||
"packages/torii-client", | ||
"packages/torii-wasm", | ||
"packages/react" | ||
], | ||
"devDependencies": { | ||
"lerna": "^8.0.0", | ||
"prettier": "^3.0.3" | ||
}, | ||
"scripts": { | ||
"build-core": "bun run --cwd packages/core build", | ||
"build-create-burner": "bun run --cwd packages/create-burner build", | ||
"build-create-dojo": "bun run --cwd packages/create-dojo 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-watch": "bun run build-core --watch & bun run build-create-burner --watch & bun run build-create-dojo --watch & bun run build-utils --watch & bun run build-react --watch & bun run build-torii-wasm --watch & bun run build-torii-client --watch", | ||
"build": "bun run build-core && bun run build-create-burner && bun run build-create-dojo && bun run build-utils && bun run build-react && bun run build-torii-wasm && bun run build-torii-client", | ||
"clean": "rm -rf node_modules packages/create-burner/node_modules node_modules packages/create-dojo/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", | ||
"prettier-check": "bun x prettier --check .", | ||
"prettier": "bun x prettier --write ." | ||
}, | ||
"dependencies": {} | ||
} |
Oops, something went wrong.