@ripple-ts/compat-react 0.2.213 → 0.2.215

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,22 @@
1
1
  # @ripple-ts/compat-react
2
2
 
3
+ ## 0.2.215
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`a9ecda4`](https://github.com/Ripple-TS/ripple/commit/a9ecda4e3f29e3b934d9f5ee80d55c059ba36ebe),
9
+ [`6653c5c`](https://github.com/Ripple-TS/ripple/commit/6653c5cebfbd4dce129906a25686ef9c63dc592a),
10
+ [`307dcf3`](https://github.com/Ripple-TS/ripple/commit/307dcf30f27dae987a19a59508cc2593c839eda3)]:
11
+ - ripple@0.2.215
12
+
13
+ ## 0.2.214
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies []:
18
+ - ripple@0.2.214
19
+
3
20
  ## 0.2.213
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/compat-react",
3
- "version": "0.2.213",
3
+ "version": "0.2.215",
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.213"
20
+ "ripple": "0.2.215"
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
  }