@ripple-ts/compat-react 0.2.214 → 0.2.216

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,25 @@
1
1
  # @ripple-ts/compat-react
2
2
 
3
+ ## 0.2.216
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`9fb507d`](https://github.com/Ripple-TS/ripple/commit/9fb507d76af6fd6a5c636af1976d1e03d3e869ac),
9
+ [`e1de4bb`](https://github.com/Ripple-TS/ripple/commit/e1de4bb9df75342a693cda24d0999a423db05ec4),
10
+ [`95ea864`](https://github.com/Ripple-TS/ripple/commit/95ea8645b2cb27e2610a4ace4c8fb238c92d441a)]:
11
+ - ripple@0.2.216
12
+
13
+ ## 0.2.215
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ [[`a9ecda4`](https://github.com/Ripple-TS/ripple/commit/a9ecda4e3f29e3b934d9f5ee80d55c059ba36ebe),
19
+ [`6653c5c`](https://github.com/Ripple-TS/ripple/commit/6653c5cebfbd4dce129906a25686ef9c63dc592a),
20
+ [`307dcf3`](https://github.com/Ripple-TS/ripple/commit/307dcf30f27dae987a19a59508cc2593c839eda3)]:
21
+ - ripple@0.2.215
22
+
3
23
  ## 0.2.214
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/compat-react",
3
- "version": "0.2.214",
3
+ "version": "0.2.216",
4
4
  "description": "Ripple compatibility layer for React",
5
5
  "main": "src/index.js",
6
6
  "author": "Dominic Gannaway",
@@ -17,9 +17,10 @@
17
17
  "dependencies": {
18
18
  "react": "^19.2.0",
19
19
  "react-dom": "^19.2.0",
20
- "ripple": "0.2.214"
20
+ "ripple": "0.2.216"
21
21
  },
22
22
  "devDependencies": {
23
+ "@types/node": "^24.3.0",
23
24
  "@types/react": "^19.2.2",
24
25
  "@types/react-dom": "^19.2.2",
25
26
  "typescript": "^5.9.2"
package/tsconfig.json CHANGED
@@ -23,5 +23,6 @@
23
23
  "./tests/**/*.test.ripple",
24
24
  "./tests/**/*.d.ts",
25
25
  "./tests/**/*.js"
26
- ]
26
+ ],
27
+ "exclude": ["node_modules", "dist"]
27
28
  }