Skip to content

Commit

Permalink
ci work
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Dec 12, 2023
1 parent 69f8f0a commit cb4e4f0
Show file tree
Hide file tree
Showing 4 changed files with 8,632 additions and 31 deletions.
8 changes: 8 additions & 0 deletions lerna.json
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"
}
64 changes: 33 additions & 31 deletions package.json
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": {}
}
Loading

0 comments on commit cb4e4f0

Please sign in to comment.