ripple 0.3.124 → 0.3.125
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 +14 -0
- package/package.json +3 -3
- package/tests/utils/ref-types.test.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.3.125
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1437](https://github.com/Ripple-TS/ripple/pull/1437)
|
|
8
|
+
[`71747c0`](https://github.com/Ripple-TS/ripple/commit/71747c088d549cd3ec85fb78744acf0273b8f6a8)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Consume the shared TSRX
|
|
10
|
+
compiler and tooling from their published packages after moving target-neutral
|
|
11
|
+
source to `tsrx-org/tsrx`. New Ripple projects now use the
|
|
12
|
+
`@tsrx/language-server`, TSRX editor identity, and published TSRX integrations.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
[[`71747c0`](https://github.com/Ripple-TS/ripple/commit/71747c088d549cd3ec85fb78744acf0273b8f6a8)]:
|
|
15
|
+
- @tsrx/ripple@0.1.62
|
|
16
|
+
|
|
3
17
|
## 0.3.124
|
|
4
18
|
|
|
5
19
|
### 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.125",
|
|
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.61",
|
|
77
|
+
"@tsrx/ripple": "0.1.62"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@types/estree": "^1.0.8",
|
|
@@ -18,9 +18,6 @@ function get_diagnostics(source) {
|
|
|
18
18
|
baseUrl: root,
|
|
19
19
|
types: [],
|
|
20
20
|
paths: {
|
|
21
|
-
'@tsrx/core/runtime/ref': ['packages/tsrx/types/runtime/ref.d.ts'],
|
|
22
|
-
'@tsrx/core/types': ['packages/tsrx/types/index.d.ts'],
|
|
23
|
-
'@tsrx/core/types/helpers': ['packages/tsrx/types/helpers.d.ts'],
|
|
24
21
|
'#public': ['packages/ripple/types/index.d.ts'],
|
|
25
22
|
ripple: ['packages/ripple/types/index.d.ts'],
|
|
26
23
|
'ripple/jsx-runtime': ['packages/ripple/src/jsx-runtime.d.ts'],
|