@porotkin/vite-plugin-react-kotlinjs 1.0.4 → 1.0.5

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/README.md CHANGED
@@ -7,7 +7,7 @@ A Vite plugin that enables Fast Refresh support for Kotlin/JS React applications
7
7
  Add the following dependency to your `build.gradle.kts`:
8
8
  ```kotlin
9
9
  dependencies {
10
- jsMainImplementation(devNpm("@porotkin/vite-plugin-react-kotlinjs", "^1.0.4"))
10
+ jsMainImplementation(devNpm("@porotkin/vite-plugin-react-kotlinjs", "^1.0.5"))
11
11
  }
12
12
  ```
13
13
 
@@ -46,6 +46,12 @@ Custom function to check if the code is a React functional component.
46
46
 
47
47
  Custom function to extract React component names from the code. Useful if your Kotlin/JS compiler generates different patterns.
48
48
 
49
+ ### `debug`
50
+
51
+ - **Type:** `boolean`
52
+
53
+ Output debug information about the transformed files.
54
+
49
55
  ## How it works
50
56
 
51
57
  Plugin post-processes generated Kotlin/JS files, so the official Vite React plugin can handle them.