@latticexyz/recs 2.0.0-main-111de0cc → 2.0.0-main-d52e7c79

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- ## 2.0.0-main-111de0cc
3
+ ## 2.0.0-main-d52e7c79
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -246,8 +246,8 @@
246
246
  - `component.metadata.valueSchema` is an object with field names and their corresponding ABI types
247
247
 
248
248
  - Updated dependencies [[`48909d15`](https://github.com/latticexyz/mud/commit/48909d151b3dfceab128c120bc6bb77de53c456b), [`b02f9d0e`](https://github.com/latticexyz/mud/commit/b02f9d0e43089e5f9b46d817ea2032ce0a1b0b07), [`f03531d9`](https://github.com/latticexyz/mud/commit/f03531d97c999954a626ef63bc5bbae51a7b90f3), [`b8a6158d`](https://github.com/latticexyz/mud/commit/b8a6158d63738ebfc1e7eb221909436d050c7e39), [`4e4a3415`](https://github.com/latticexyz/mud/commit/4e4a34150aeae988c8e61e25d55c227afb6c2d4b), [`53522998`](https://github.com/latticexyz/mud/commit/535229984565539e6168042150b45fe0f9b48b0f)]:
249
- - @latticexyz/schema-type@2.0.0-main-111de0cc
250
- - @latticexyz/utils@2.0.0-main-111de0cc
249
+ - @latticexyz/schema-type@2.0.0-main-d52e7c79
250
+ - @latticexyz/utils@2.0.0-main-d52e7c79
251
251
 
252
252
  ## 2.0.0-next.4
253
253
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latticexyz/recs",
3
- "version": "2.0.0-main-111de0cc",
3
+ "version": "2.0.0-main-d52e7c79",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/latticexyz/mud.git",
@@ -25,8 +25,8 @@
25
25
  "dependencies": {
26
26
  "mobx": "^6.7.0",
27
27
  "rxjs": "7.5.5",
28
- "@latticexyz/schema-type": "2.0.0-main-111de0cc",
29
- "@latticexyz/utils": "2.0.0-main-111de0cc"
28
+ "@latticexyz/schema-type": "2.0.0-main-d52e7c79",
29
+ "@latticexyz/utils": "2.0.0-main-d52e7c79"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/jest": "^27.4.1",
@@ -44,6 +44,7 @@
44
44
  "clean:js": "rimraf dist",
45
45
  "dev": "tsup --watch",
46
46
  "lint": "eslint . --ext .ts",
47
- "test": "tsc --noEmit && jest"
47
+ "test": "tsc --noEmit && jest",
48
+ "test:ci": "pnpm run test"
48
49
  }
49
50
  }