ripple 0.2.155 → 0.2.157
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/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.2.
|
|
6
|
+
"version": "0.2.157",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/runtime/index-client.js",
|
|
9
9
|
"main": "src/runtime/index-client.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/Ripple-TS/ripple/issues"
|
|
17
17
|
},
|
|
18
|
-
"homepage": "https://
|
|
18
|
+
"homepage": "https://ripplejs.com",
|
|
19
19
|
"keywords": [
|
|
20
20
|
"ripple",
|
|
21
21
|
"UI",
|
|
@@ -81,6 +81,6 @@
|
|
|
81
81
|
"typescript": "^5.9.2"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"ripple": "0.2.
|
|
84
|
+
"ripple": "0.2.157"
|
|
85
85
|
}
|
|
86
86
|
}
|
|
@@ -305,6 +305,13 @@ const visitors = {
|
|
|
305
305
|
};
|
|
306
306
|
},
|
|
307
307
|
|
|
308
|
+
TSNonNullExpression(node, context) {
|
|
309
|
+
if (context.state.to_ts) {
|
|
310
|
+
return context.next();
|
|
311
|
+
}
|
|
312
|
+
return context.visit(node.expression);
|
|
313
|
+
},
|
|
314
|
+
|
|
308
315
|
CallExpression(node, context) {
|
|
309
316
|
if (!context.state.to_ts) {
|
|
310
317
|
delete node.typeArguments;
|