@remyyy/vite-plugin-velox 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @remyyy/vite-plugin-velox
2
+
3
+ **Vite integration for the Velox Framework**
4
+
5
+ Enables JSX compilation and HMR for Velox applications.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install -D @remyyy/vite-plugin-velox
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Add it to your `vite.config.ts`:
16
+
17
+ ```ts
18
+ import { defineConfig } from 'vite';
19
+ import velox from '@remyyy/vite-plugin-velox';
20
+
21
+ export default defineConfig({
22
+ plugins: [velox()]
23
+ });
24
+ ```
25
+
26
+ ## Documentation
27
+
28
+ For full documentation, visit the [main repository](https://github.com/TheRemyyy/velox-framework).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remyyy/vite-plugin-velox",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },