vite-plugin-glob-input 0.0.1 → 0.2.0

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 +2 -2
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -7,7 +7,7 @@ Vite plugin to add files to `build.rollupOptions.input` using fast-glob patterns
7
7
 
8
8
  ## Features
9
9
 
10
- - 📦 **Vite 7+ Compatible**: Fully supports Vite 7 beta and later versions
10
+ - 📦 **Vite 6+ Compatible**: Fully supports Vite 6 and later versions (including Vite 7 beta)
11
11
  - 🔍 **Fast Glob Integration**: Uses fast-glob for efficient file pattern matching
12
12
  - 🏷️ **Smart Aliasing**: Automatically generates meaningful entry names
13
13
  - 📁 **Flexible Configuration**: Support for complex directory structures
@@ -146,7 +146,7 @@ globInput({
146
146
 
147
147
  ## Compatibility
148
148
 
149
- - **Vite**: 2.x, 3.x, 4.x, 5.x, 6.x, 7.x
149
+ - **Vite**: ^6.0.0 || ^7.0.0
150
150
  - **Node.js**: 18.x, 20.x, 22.x
151
151
  - **TypeScript**: 5.x
152
152
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-glob-input",
3
- "version": "0.0.1",
3
+ "version": "0.2.0",
4
4
  "description": "Vite plugin to add files to build.rollupOptions.input using fast-glob",
5
5
  "author": "ozekimasaki",
6
6
  "license": "MIT",
@@ -40,19 +40,19 @@
40
40
  "prepublishOnly": "pnpm coverage && pnpm build"
41
41
  },
42
42
  "dependencies": {
43
- "fast-glob": "^3.3.2"
43
+ "fast-glob": "^3.3.3"
44
44
  },
45
45
  "peerDependencies": {
46
- "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
46
+ "vite": "^6.0.0 || ^7.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "vite": "^7.0.0-beta.0",
50
- "vitest": "^3.2.1",
51
- "@vitest/coverage-v8": "^3.2.1",
52
- "typescript": "^5.7.2",
53
- "rimraf": "^6.0.1",
54
- "fs-extra": "^11.2.0",
55
49
  "@types/fs-extra": "^11.0.4",
56
- "@types/node": "^22.10.2"
50
+ "@types/node": "^24.0.3",
51
+ "@vitest/coverage-v8": "^3.2.4",
52
+ "fs-extra": "^11.3.0",
53
+ "rimraf": "^6.0.1",
54
+ "typescript": "^5.8.3",
55
+ "vite": "^7.0.0",
56
+ "vitest": "^3.2.4"
57
57
  }
58
58
  }