@latticexyz/react 2.0.0-alpha.88 → 2.0.0-alpha.9
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 +6 -0
- package/package.json +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.42.0](https://github.com/latticexyz/mud/compare/v1.41.0...v1.42.0) (2023-04-13)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- v2 event decoding ([#415](https://github.com/latticexyz/mud/issues/415)) ([374ed54](https://github.com/latticexyz/mud/commit/374ed542c3387a4ec2b36ab68ae534419aa58763))
|
|
11
|
+
|
|
6
12
|
# [1.41.0](https://github.com/latticexyz/mud/compare/v1.40.0...v1.41.0) (2023-03-09)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/package.json
CHANGED
|
@@ -1,35 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latticexyz/react",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.9+dc76f2ea",
|
|
4
4
|
"description": "React tools for MUD client.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"source": "src/index.ts",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
5
|
"repository": {
|
|
9
6
|
"type": "git",
|
|
10
7
|
"url": "https://github.com/latticexyz/mud.git",
|
|
11
8
|
"directory": "packages/react"
|
|
12
9
|
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"source": "src/index.ts",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"
|
|
14
|
+
"build": "rimraf dist && rollup -c rollup.config.js",
|
|
15
15
|
"docs": "rimraf API && typedoc src && find API -type f -name '*.md' -exec sed -E -i \"\" \"s/(#.*)(<.*>)/\\1/\" {} \\; && echo 'label: API' > API/index.yml",
|
|
16
|
-
"test": "tsc --noEmit && jest",
|
|
17
16
|
"prepack": "mv package.json package.json.bak && jq \".main = \\\"dist/index.js\\\"\" package.json.bak > package.json ",
|
|
18
17
|
"postpack": "mv package.json.bak package.json || echo 'no package.json.bak'",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
},
|
|
22
|
-
"peerDependencies": {
|
|
23
|
-
"@latticexyz/recs": "latest",
|
|
24
|
-
"mobx": "^6.4.2",
|
|
25
|
-
"react": "^18.2.0",
|
|
26
|
-
"rxjs": "^7.5.5"
|
|
18
|
+
"release": "npm publish --access=public",
|
|
19
|
+
"test": "tsc --noEmit && jest"
|
|
27
20
|
},
|
|
28
21
|
"dependencies": {
|
|
29
22
|
"fast-deep-equal": "^3.1.3"
|
|
30
23
|
},
|
|
31
24
|
"devDependencies": {
|
|
32
|
-
"@latticexyz/recs": "2.0.0-alpha.
|
|
25
|
+
"@latticexyz/recs": "2.0.0-alpha.9+dc76f2ea",
|
|
33
26
|
"@rollup/plugin-json": "^4.1.0",
|
|
34
27
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
35
28
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
@@ -53,5 +46,11 @@
|
|
|
53
46
|
"typedoc-plugin-markdown": "^3.13.6",
|
|
54
47
|
"typescript": "^4.9.5"
|
|
55
48
|
},
|
|
56
|
-
"
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@latticexyz/recs": "latest",
|
|
51
|
+
"mobx": "^6.4.2",
|
|
52
|
+
"react": "^18.2.0",
|
|
53
|
+
"rxjs": "^7.5.5"
|
|
54
|
+
},
|
|
55
|
+
"gitHead": "dc76f2ea99e9d417ca8b216cea84e1ad8a1782eb"
|
|
57
56
|
}
|