@ripple-ts/vite-plugin 0.3.67 → 0.3.69
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 +19 -0
- package/package.json +4 -4
- package/tests/transform-source-maps.test.js +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @ripple-ts/vite-plugin
|
|
2
2
|
|
|
3
|
+
## 0.3.69
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
[[`054bd1e`](https://github.com/Ripple-TS/ripple/commit/054bd1e75347e395f6c096f8e293d1baf8e03549),
|
|
9
|
+
[`054bd1e`](https://github.com/Ripple-TS/ripple/commit/054bd1e75347e395f6c096f8e293d1baf8e03549)]:
|
|
10
|
+
- @tsrx/ripple@0.1.17
|
|
11
|
+
- @ripple-ts/adapter@0.3.69
|
|
12
|
+
|
|
13
|
+
## 0.3.68
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
[[`d045396`](https://github.com/Ripple-TS/ripple/commit/d0453962cfe1df7a98a0981b0bf3e5729195a9ae)]:
|
|
19
|
+
- @tsrx/ripple@0.1.16
|
|
20
|
+
- @ripple-ts/adapter@0.3.68
|
|
21
|
+
|
|
3
22
|
## 0.3.67
|
|
4
23
|
|
|
5
24
|
### 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.
|
|
6
|
+
"version": "0.3.69",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/index.js",
|
|
9
9
|
"main": "src/index.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"url": "https://github.com/Ripple-TS/ripple/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@ripple-ts/adapter": "0.3.
|
|
36
|
-
"@tsrx/ripple": "0.1.
|
|
35
|
+
"@ripple-ts/adapter": "0.3.69",
|
|
36
|
+
"@tsrx/ripple": "0.1.17"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^24.3.0",
|
|
40
40
|
"type-fest": "^5.6.0",
|
|
41
41
|
"vite": "^8.0.12",
|
|
42
|
-
"ripple": "0.3.
|
|
42
|
+
"ripple": "0.3.69"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
@@ -52,10 +52,10 @@ describe('vite-plugin-ripple source maps', () => {
|
|
|
52
52
|
await init_plugin(plugin, root);
|
|
53
53
|
|
|
54
54
|
const id = `${root}/App.tsrx`;
|
|
55
|
-
const source = `export
|
|
55
|
+
const source = `export function App() { return <>
|
|
56
56
|
let message = 'Hello world';
|
|
57
57
|
<div>{message}</div>
|
|
58
|
-
}`;
|
|
58
|
+
</>; }`;
|
|
59
59
|
|
|
60
60
|
const result = await call_transform(plugin, source, id);
|
|
61
61
|
|
|
@@ -73,7 +73,7 @@ describe('vite-plugin-ripple source maps', () => {
|
|
|
73
73
|
await init_plugin(plugin, root);
|
|
74
74
|
|
|
75
75
|
const id = `${root}/Styled.tsrx`;
|
|
76
|
-
const source = `export
|
|
76
|
+
const source = `export function Styled() { return <>
|
|
77
77
|
<div>{'Hello world'}</div>
|
|
78
78
|
|
|
79
79
|
<style>
|
|
@@ -81,7 +81,7 @@ describe('vite-plugin-ripple source maps', () => {
|
|
|
81
81
|
color: red;
|
|
82
82
|
}
|
|
83
83
|
</style>
|
|
84
|
-
}`;
|
|
84
|
+
</>; }`;
|
|
85
85
|
|
|
86
86
|
const result = await call_transform(plugin, source, id);
|
|
87
87
|
|