@ripple-ts/vite-plugin 0.3.12 → 0.3.13

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,15 @@
1
1
  # @ripple-ts/vite-plugin
2
2
 
3
+ ## 0.3.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [`6e11177`](https://github.com/Ripple-TS/ripple/commit/6e111778cae4e7d9876e51e293520f0859eb5890)
8
+ Thanks [@trueadm](https://github.com/trueadm)! - Add `.rsrx` support across
9
+ Ripple tooling and rename the repository's tracked `.ripple` modules to `.rsrx`.
10
+ - Updated dependencies []:
11
+ - @ripple-ts/adapter@0.3.13
12
+
3
13
  ## 0.3.12
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Vite plugin for Ripple",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.3.12",
6
+ "version": "0.3.13",
7
7
  "type": "module",
8
8
  "module": "src/index.js",
9
9
  "main": "src/index.js",
@@ -32,13 +32,13 @@
32
32
  "url": "https://github.com/Ripple-TS/ripple/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@ripple-ts/adapter": "0.3.12"
35
+ "@ripple-ts/adapter": "0.3.13"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "^24.3.0",
39
39
  "type-fest": "^5.4.4",
40
40
  "vite": "^8.0.0",
41
- "ripple": "0.3.12"
41
+ "ripple": "0.3.13"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
package/src/index.js CHANGED
@@ -40,8 +40,8 @@ const VIRTUAL_HYDRATE_ID = 'virtual:ripple-hydrate';
40
40
  const RESOLVED_VIRTUAL_HYDRATE_ID = '\0virtual:ripple-hydrate';
41
41
  const VIRTUAL_COMPAT_ID = 'virtual:ripple-compat';
42
42
  const RESOLVED_VIRTUAL_COMPAT_ID = '\0virtual:ripple-compat';
43
- const RIPPLE_EXTENSIONS = ['.ripple', '.tsrx'];
44
- const RIPPLE_EXTENSION_PATTERN = /\.(?:ripple|tsrx)$/;
43
+ const RIPPLE_EXTENSIONS = ['.ripple', '.rsrx', '.tsrx'];
44
+ const RIPPLE_EXTENSION_PATTERN = /\.(?:ripple|rsrx|tsrx)$/;
45
45
 
46
46
  /**
47
47
  * @param {string} file_name