rn-shiki 0.0.37-11 → 0.0.37-12

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rn-shiki",
3
3
  "type": "module",
4
- "version": "0.0.37-11",
4
+ "version": "0.0.37-12",
5
5
  "description": "Shiki syntax highlighter for React Native.",
6
6
  "author": "Ryan Skinner <hello@ryanskinner.com>",
7
7
  "license": "MIT",
@@ -27,6 +27,8 @@ export function getRNStylesFromShikiStyle(shikiStyle: ReactStyle): HighlighterSt
27
27
  // Convert the filtered style to React Native style
28
28
  const rnStyle: TextStyle = transform(Object.entries(filteredStyle)) as TextStyle
29
29
 
30
+ console.log(`Converted style for ${className}:`, rnStyle)
31
+
30
32
  return [className, rnStyle] // Return the class name and the converted style
31
33
  }),
32
34
  )