@ankhorage/zora-game 0.7.0 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @ankhorage/zora-game
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1c3f276: Add packed-package Expo 57, React Native, and React Native Web acceptance coverage to the package CI path.
8
+
9
+ ## 0.7.1
10
+
11
+ ### Patch Changes
12
+
13
+ - e264dd0: Update Ankhorage dependencies: `@ankhorage/runtime`, `@ankhorage/zora`.
14
+
3
15
  ## 0.7.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # @ankhorage/zora-game
5
5
 
6
- ![license: MIT](././paradox/badges/license.svg) ![npm: v0.7.0](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
6
+ ![license: MIT](././paradox/badges/license.svg) ![npm: v0.7.2](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
7
7
 
8
8
  Generic game presentation primitives for React Native and React Native Web apps built on ZORA.
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ankhorage/zora-game",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "type": "module",
5
5
  "description": "Generic game presentation primitives for React Native and React Native Web apps built on ZORA.",
6
6
  "homepage": "https://github.com/ankhorage/zora-game#readme",
@@ -57,7 +57,7 @@
57
57
  "node": ">=24"
58
58
  },
59
59
  "peerDependencies": {
60
- "@ankhorage/zora": ">=20.0.1",
60
+ "@ankhorage/zora": ">=20.0.2",
61
61
  "react": "19.2.3",
62
62
  "react-native": "0.86.x"
63
63
  },
@@ -65,7 +65,7 @@
65
65
  "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.build.json",
66
66
  "check-types": "tsc --noEmit -p tsconfig.json",
67
67
  "typecheck": "bun run check-types",
68
- "test": "bun test src",
68
+ "test": "bun test src && bun run expo:acceptance",
69
69
  "docs": "paradox",
70
70
  "changeset": "ankhorage-changeset",
71
71
  "changeset:status": "ankhorage-changeset status --since=origin/main",
@@ -75,12 +75,13 @@
75
75
  "format": "ankhorage-prettier --write .",
76
76
  "format:check": "ankhorage-prettier --check .",
77
77
  "knip:check": "ankhorage-knip",
78
- "version-packages": "ankhorage-changeset version"
78
+ "version-packages": "ankhorage-changeset version",
79
+ "expo:acceptance": "bun scripts/validate-expo-candidate.ts"
79
80
  },
80
81
  "devDependencies": {
81
82
  "@ankhorage/devtools": "^1.15.3",
82
83
  "@ankhorage/paradox": "^0.1.26",
83
- "@ankhorage/zora": "^20.0.1",
84
+ "@ankhorage/zora": "^20.0.2",
84
85
  "@types/bun": "^1.4.1",
85
86
  "@types/node": "^26.6.1",
86
87
  "@types/react": "^19.2.18",
@@ -94,6 +95,6 @@
94
95
  "packageManager": "bun@1.4.2",
95
96
  "dependencies": {
96
97
  "@ankhorage/game": "^0.1.1",
97
- "@ankhorage/runtime": "^3.0.1"
98
+ "@ankhorage/runtime": "^3.0.2"
98
99
  }
99
100
  }