rn-shiki 0.0.37-0 → 0.0.37-2

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-0",
4
+ "version": "0.0.37-2",
5
5
  "description": "Shiki syntax highlighter for React Native.",
6
6
  "author": "Ryan Skinner <hello@ryanskinner.com>",
7
7
  "license": "MIT",
@@ -1,8 +1,8 @@
1
1
  import type { SyntaxHighlighterProps } from 'src/types/shiki'
2
2
  import React from 'react'
3
3
  import { Platform, ScrollView, StyleSheet, Text, View } from 'react-native'
4
- import { convertShikiTheme } from 'src/utils/style-transformer'
5
4
  import { useSyntaxHighlighter } from '../../hooks/useSyntaxHighlighter'
5
+ import { convertShikiTheme } from '../../utils/style-transformer'
6
6
  import SyntaxLine from './SyntaxLine'
7
7
 
8
8
  const monospaceFont = Platform.select({
@@ -1,5 +1,5 @@
1
- import type { RNTokenStyle } from 'src/utils/style-transformer'
2
1
  import type { TokenType } from '../../types'
2
+ import type { RNTokenStyle } from '../../utils/style-transformer'
3
3
  import React from 'react'
4
4
  import { Platform, StyleSheet, Text, View } from 'react-native'
5
5