vite-plugin-glob-input 0.2.0 → 0.3.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 +14 -7
  2. package/package.json +6 -6
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 6+ Compatible**: Fully supports Vite 6 and later versions (including Vite 7 beta)
10
+ - 📦 **Vite 6 / 7 / 8 Compatible**: Fully supports Vite 6, 7, and 8 (Rolldown-powered)
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,15 +146,15 @@ globInput({
146
146
 
147
147
  ## Compatibility
148
148
 
149
- - **Vite**: ^6.0.0 || ^7.0.0
150
- - **Node.js**: 18.x, 20.x, 22.x
149
+ - **Vite**: ^6.0.0 || ^7.0.0 || ^8.0.0
150
+ - **Node.js**: 20.x, 22.x
151
151
  - **TypeScript**: 5.x
152
152
 
153
153
  ## Development
154
154
 
155
155
  ### Testing
156
156
 
157
- This project uses Vitest 3.2 for testing:
157
+ This project uses Vitest 4 for testing:
158
158
 
159
159
  ```bash
160
160
  # Run tests
@@ -187,11 +187,18 @@ MIT License - see the [LICENSE](LICENSE) file for details.
187
187
 
188
188
  ## Changelog
189
189
 
190
+ ### v0.3.0
191
+
192
+ - ✨ Vite 8 support (Rolldown-powered builds)
193
+ - ✨ Vitest 4 integration
194
+ - ⬆️ Node.js 20+ required
195
+
196
+ ### v0.2.1
197
+
198
+ - ✨ Vite 7 support
199
+
190
200
  ### v0.0.1
191
201
 
192
202
  - ✨ Initial release
193
- - ✨ Vite 7 beta support
194
- - ✨ Vitest 3.2 integration
195
203
  - 🔧 TypeScript configuration
196
- - 🐛 Robust error handling
197
204
  - 📝 Comprehensive documentation
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "vite-plugin-glob-input",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Vite plugin to add files to build.rollupOptions.input using fast-glob",
5
5
  "author": "ozekimasaki",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/ozekimasaki/vite-plugin-glob-input#readme",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/ozekimasaki/vite-plugin-glob-input.git"
10
+ "url": "git+https://github.com/ozekimasaki/vite-plugin-glob-input.git"
11
11
  },
12
12
  "bugs": {
13
13
  "url": "https://github.com/ozekimasaki/vite-plugin-glob-input/issues"
@@ -43,16 +43,16 @@
43
43
  "fast-glob": "^3.3.3"
44
44
  },
45
45
  "peerDependencies": {
46
- "vite": "^6.0.0 || ^7.0.0"
46
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/fs-extra": "^11.0.4",
50
50
  "@types/node": "^24.0.3",
51
- "@vitest/coverage-v8": "^3.2.4",
51
+ "@vitest/coverage-v8": "^4.1.0",
52
52
  "fs-extra": "^11.3.0",
53
53
  "rimraf": "^6.0.1",
54
54
  "typescript": "^5.8.3",
55
- "vite": "^7.0.0",
56
- "vitest": "^3.2.4"
55
+ "vite": "^8.0.0",
56
+ "vitest": "^4.1.0"
57
57
  }
58
58
  }