ripple 0.3.99 → 0.3.100
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,20 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.3.100
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1352](https://github.com/Ripple-TS/ripple/pull/1352)
|
|
8
|
+
[`b36ec19`](https://github.com/Ripple-TS/ripple/commit/b36ec1930764f447585a6c31c17bc63b3596511a)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - various type, volar fixes and
|
|
10
|
+
lib upgrades
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`b36ec19`](https://github.com/Ripple-TS/ripple/commit/b36ec1930764f447585a6c31c17bc63b3596511a),
|
|
14
|
+
[`b36ec19`](https://github.com/Ripple-TS/ripple/commit/b36ec1930764f447585a6c31c17bc63b3596511a)]:
|
|
15
|
+
- @tsrx/core@0.1.42
|
|
16
|
+
- @tsrx/ripple@0.1.43
|
|
17
|
+
|
|
3
18
|
## 0.3.99
|
|
4
19
|
|
|
5
20
|
### 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.
|
|
6
|
+
"version": "0.3.100",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/runtime/index-client.js",
|
|
9
9
|
"main": "src/runtime/index-client.js",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"clsx": "^2.1.1",
|
|
74
74
|
"devalue": "^5.8.1",
|
|
75
75
|
"esm-env": "^1.2.2",
|
|
76
|
-
"@tsrx/core": "0.1.
|
|
77
|
-
"@tsrx/ripple": "0.1.
|
|
76
|
+
"@tsrx/core": "0.1.42",
|
|
77
|
+
"@tsrx/ripple": "0.1.43"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@types/estree": "^1.0.8",
|
|
@@ -706,7 +706,7 @@ const Inline = function(props: { x: string }) @{
|
|
|
706
706
|
`;
|
|
707
707
|
const result = compile_to_volar_mappings(source, 'test.tsrx').code;
|
|
708
708
|
|
|
709
|
-
expect(result).toContain('const Inline = function(props: { x: string }) {');
|
|
709
|
+
expect(result).toContain('const Inline = function (props: { x: string }) {');
|
|
710
710
|
expect(result).not.toContain('function Inline');
|
|
711
711
|
expect(result).not.toContain('const Inline = (props: { x: string }) => {');
|
|
712
712
|
});
|