ripple 0.3.31 → 0.3.33

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,27 @@
1
1
  # ripple
2
2
 
3
+ ## 0.3.33
4
+
5
+ ### Patch Changes
6
+
7
+ - [#961](https://github.com/Ripple-TS/ripple/pull/961)
8
+ [`3e07109`](https://github.com/Ripple-TS/ripple/commit/3e071098508449158fa11f2ae48c912d4d673b68)
9
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Fix ArrayPattern source map
10
+ visitor, various type fixes for tests: ripple, vite-plugin-react,
11
+ vite-plugin-solid
12
+ - Updated dependencies
13
+ [[`3e07109`](https://github.com/Ripple-TS/ripple/commit/3e071098508449158fa11f2ae48c912d4d673b68)]:
14
+ - ripple@0.3.33
15
+ - @tsrx/ripple@0.0.15
16
+
17
+ ## 0.3.32
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies []:
22
+ - ripple@0.3.32
23
+ - @tsrx/ripple@0.0.14
24
+
3
25
  ## 0.3.31
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is an elegant TypeScript UI framework",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.3.31",
6
+ "version": "0.3.33",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -76,7 +76,7 @@
76
76
  "esm-env": "^1.2.2",
77
77
  "@types/estree": "^1.0.8",
78
78
  "@types/estree-jsx": "^1.0.5",
79
- "@tsrx/ripple": "0.0.13"
79
+ "@tsrx/ripple": "0.0.15"
80
80
  },
81
81
  "devDependencies": {
82
82
  "@types/node": "^24.3.0",
@@ -84,9 +84,9 @@
84
84
  "typescript": "^5.9.3",
85
85
  "@volar/language-core": "~2.4.28",
86
86
  "vscode-languageserver-types": "^3.17.5",
87
- "@tsrx/core": "0.0.11"
87
+ "@tsrx/core": "0.0.13"
88
88
  },
89
89
  "peerDependencies": {
90
- "ripple": "0.3.31"
90
+ "ripple": "0.3.33"
91
91
  }
92
92
  }
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "include": ["../../src/**/*", "../**/*"],
4
- "exclude": ["../server", "../setup-server.js", "../hydration", "../setup-hydration.js"]
4
+ "exclude": [
5
+ "../server",
6
+ "../hydration",
7
+ "../setup-server.js",
8
+ "../setup-hydration.js",
9
+ "../server.d.ts",
10
+ "../hydration.d.ts"
11
+ ]
5
12
  }
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "include": ["../../src/**/*", "../**/*"],
4
- "exclude": ["../client", "../setup-client.js", "../server", "../setup-server.js"]
4
+ "exclude": [
5
+ "../client",
6
+ "../server",
7
+ "../setup-client.js",
8
+ "../setup-server.js",
9
+ "../client.d.ts",
10
+ "../server.d.ts"
11
+ ]
5
12
  }
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "include": ["../../src/**/*", "../**/*"],
4
- "exclude": ["../client", "../setup-client.js", "../hydration", "../setup-hydration.js"]
4
+ "exclude": [
5
+ "../client",
6
+ "../hydration",
7
+ "../setup-client.js",
8
+ "../setup-hydration.js",
9
+ "../client.d.ts",
10
+ "../hydration.d.ts"
11
+ ]
5
12
  }