ripple 0.2.110 → 0.2.111

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.110",
6
+ "version": "0.2.111",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -605,6 +605,9 @@ export function convert_source_map_to_mappings(ast, source, generated_code) {
605
605
  } else if (node.type === 'TemplateElement') {
606
606
  // Leaf node, no children to visit
607
607
  return;
608
+ } else if (node.type === 'Literal') {
609
+ // Leaf node - literals have no children to visit
610
+ return;
608
611
  } else if (node.type === 'PrivateIdentifier') {
609
612
  // Leaf node
610
613
  return;