@xonovex/vite-config-base 0.1.4 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +32 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @xonovex/vite-config-base
2
+
3
+ Base Vite configuration for Xonovex projects.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -D @xonovex/vite-config-base
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ In your `vite.config.ts`:
14
+
15
+ ```typescript
16
+ import {defineConfig} from "vite";
17
+ import {baseViteConfig} from "@xonovex/vite-config-base";
18
+
19
+ export default defineConfig({
20
+ ...baseViteConfig,
21
+ // Custom overrides
22
+ });
23
+ ```
24
+
25
+ ## Included Plugins
26
+
27
+ - `@tailwindcss/vite` - Tailwind CSS integration
28
+ - `vite-tsconfig-paths` - TypeScript path mapping
29
+
30
+ ## License
31
+
32
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xonovex/vite-config-base",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Base Vite configuration for Xonovex projects",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -41,8 +41,8 @@
41
41
  "vite-tsconfig-paths": "6.0.4"
42
42
  },
43
43
  "devDependencies": {
44
- "@xonovex/eslint-config-base": "0.1.4",
45
- "@xonovex/ts-config-build": "0.1.4",
44
+ "@xonovex/eslint-config-base": "0.1.5",
45
+ "@xonovex/ts-config-build": "0.1.5",
46
46
  "typescript": "5.9.3"
47
47
  },
48
48
  "scripts": {