ripple 0.3.21 → 0.3.22

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,23 @@
1
1
  # ripple
2
2
 
3
+ ## 0.3.22
4
+
5
+ ### Patch Changes
6
+
7
+ - [`bc8a6ed`](https://github.com/Ripple-TS/ripple/commit/bc8a6ed53d451da90cb6eb6ff9ec564f6f0cabe8)
8
+ Thanks [@trueadm](https://github.com/trueadm)! - Restore the `ripple/compiler`
9
+ subpath export. The compiler was moved into `@tsrx/ripple` during the
10
+ Ripple/TSRX split, which accidentally dropped `ripple/compiler` from the
11
+ published `exports` map — breaking downstream tooling that imports the compiler
12
+ by the public path, including `livecodes` and any playground served through
13
+ `esm.sh`. The path now re-exports the `@tsrx/ripple` API (`compile`, `parse`,
14
+ `compile_to_volar_mappings`, and the shared types), and `@tsrx/ripple` is
15
+ promoted to a runtime dependency so the re-export resolves for installed
16
+ consumers.
17
+ - Updated dependencies
18
+ [[`bc8a6ed`](https://github.com/Ripple-TS/ripple/commit/bc8a6ed53d451da90cb6eb6ff9ec564f6f0cabe8)]:
19
+ - ripple@0.3.22
20
+
3
21
  ## 0.3.21
4
22
 
5
23
  ### 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.21",
6
+ "version": "0.3.22",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -33,6 +33,10 @@
33
33
  "types": "./types/server.d.ts",
34
34
  "default": "./src/server/index.js"
35
35
  },
36
+ "./compiler": {
37
+ "types": "./types/compiler.d.ts",
38
+ "default": "./src/compiler/index.js"
39
+ },
36
40
  "./compiler/internal/import": {
37
41
  "types": "./src/compiler/types/import.d.ts"
38
42
  },
@@ -71,7 +75,8 @@
71
75
  "devalue": "^5.6.3",
72
76
  "esm-env": "^1.2.2",
73
77
  "@types/estree": "^1.0.8",
74
- "@types/estree-jsx": "^1.0.5"
78
+ "@types/estree-jsx": "^1.0.5",
79
+ "@tsrx/ripple": "0.0.5"
75
80
  },
76
81
  "devDependencies": {
77
82
  "@types/node": "^24.3.0",
@@ -79,10 +84,9 @@
79
84
  "typescript": "^5.9.3",
80
85
  "@volar/language-core": "~2.4.28",
81
86
  "vscode-languageserver-types": "^3.17.5",
82
- "@tsrx/core": "0.0.4",
83
- "@tsrx/ripple": "0.0.5"
87
+ "@tsrx/core": "0.0.4"
84
88
  },
85
89
  "peerDependencies": {
86
- "ripple": "0.3.21"
90
+ "ripple": "0.3.22"
87
91
  }
88
92
  }
@@ -0,0 +1,5 @@
1
+ // Public re-export of the Ripple compiler. The compiler itself lives in
2
+ // `@tsrx/ripple` since the Ripple/TSRX split; this module exists so
3
+ // downstream consumers (playgrounds, esm.sh users, older tooling) can keep
4
+ // importing `ripple/compiler` without knowing about the internal package.
5
+ export * from '@tsrx/ripple';
@@ -0,0 +1,4 @@
1
+ // Public re-export of the Ripple compiler types. The compiler itself lives
2
+ // in `@tsrx/ripple`; this file exists so downstream consumers can keep
3
+ // importing from `ripple/compiler` without depending on the internal package.
4
+ export * from '@tsrx/ripple';