@jmlweb/vite-config 0.1.2 → 0.1.3
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/CHANGELOG.md +6 -0
- package/README.md +27 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -28,6 +28,8 @@ For React projects, also install the React plugin:
|
|
|
28
28
|
npm install --save-dev @vitejs/plugin-react
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
32
|
+
|
|
31
33
|
## 🚀 Quick Start
|
|
32
34
|
|
|
33
35
|
Create a `vite.config.ts` file in your project root:
|
|
@@ -341,11 +343,36 @@ Optional peer dependency for React projects:
|
|
|
341
343
|
|
|
342
344
|
## 🔗 Related Packages
|
|
343
345
|
|
|
346
|
+
### Internal Packages
|
|
347
|
+
|
|
344
348
|
- [`@jmlweb/tsconfig-react`](../tsconfig-react) - TypeScript config for React projects
|
|
345
349
|
- [`@jmlweb/eslint-config-react`](../eslint-config-react) - ESLint config for React projects
|
|
346
350
|
- [`@jmlweb/vitest-config`](../vitest-config) - Vitest configuration for testing
|
|
347
351
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
|
|
348
352
|
|
|
353
|
+
### External Tools
|
|
354
|
+
|
|
355
|
+
- [Vite](https://vite.dev/) - Next-generation frontend tooling
|
|
356
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react) - Official React plugin for Vite
|
|
357
|
+
- [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) - SVG to React component transform
|
|
358
|
+
- [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) - Visualize bundle size
|
|
359
|
+
|
|
360
|
+
## 🔄 Migration Guide
|
|
361
|
+
|
|
362
|
+
### Upgrading to a New Version
|
|
363
|
+
|
|
364
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
365
|
+
|
|
366
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
367
|
+
|
|
368
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
369
|
+
|
|
370
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
371
|
+
|
|
372
|
+
## 📜 Changelog
|
|
373
|
+
|
|
374
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
375
|
+
|
|
349
376
|
## 📄 License
|
|
350
377
|
|
|
351
378
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmlweb/vite-config",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Base Vite configuration for jmlweb projects with TypeScript support, build optimization, and optional React integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|