@ndriadev/futurable 2.3.2 → 2.3.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.
- package/CHANGELOG.md +52 -0
- package/README.md +194 -549
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +255 -0
- package/dist/index.d.mts +255 -0
- package/dist/index.d.ts +10 -9
- package/dist/index.mjs +1 -0
- package/package.json +41 -39
- package/dist/example/index.d.ts +0 -2
- package/dist/example/index.d.ts.map +0 -1
- package/dist/futurable.cjs +0 -1
- package/dist/futurable.mjs +0 -437
- package/dist/index.d.ts.map +0 -1
- package/dist/index.test.d.ts +0 -2
- package/dist/index.test.d.ts.map +0 -1
- package/scripts/copy-resources.js +0 -37
- package/scripts/preInstall.js +0 -17
- package/scripts/server.js +0 -16
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [2.3.5](https://github.com/nDriaDev/vite-plugin-universal-api/releases/tag/v2.3.5) - 2026-02-06
|
|
4
|
+
|
|
5
|
+
- Initial release
|
|
6
|
+
|
|
7
|
+
## [2.3.4](https://github.com/nDriaDev/vite-plugin-universal-api/releases/tag/v2.3.4) - 2026-02-06
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- gitignore ([11759fe](https://github.com/nDriaDev/vite-plugin-universal-api/commit/11759fe))
|
|
12
|
+
- [FIX] docs ([4b80d05](https://github.com/nDriaDev/vite-plugin-universal-api/commit/4b80d05))
|
|
13
|
+
|
|
14
|
+
### Chores
|
|
15
|
+
|
|
16
|
+
- update dependencies ([f90aadb](https://github.com/nDriaDev/vite-plugin-universal-api/commit/f90aadb))
|
|
17
|
+
- update dependencies ([16e1592](https://github.com/nDriaDev/vite-plugin-universal-api/commit/16e1592))
|
|
18
|
+
- update dependencies ([cd4df57](https://github.com/nDriaDev/vite-plugin-universal-api/commit/cd4df57))
|
|
19
|
+
- refactor library ([7623ed9](https://github.com/nDriaDev/vite-plugin-universal-api/commit/7623ed9))
|
|
20
|
+
|
|
21
|
+
## [Unreleased]
|
|
22
|
+
|
|
23
|
+
### 📝 Changed
|
|
24
|
+
- Migrated build system from Vite to unbuild for better performance and compatibility
|
|
25
|
+
- Replaced TypeDoc documentation with VitePress for improved documentation experience
|
|
26
|
+
- Modernized README with better styling and structure
|
|
27
|
+
- Updated package.json scripts for automated releases
|
|
28
|
+
- Added comprehensive GitHub Actions for CI/CD and documentation deployment
|
|
29
|
+
|
|
30
|
+
### ✨ Added
|
|
31
|
+
- Automated changelog generation
|
|
32
|
+
- Release automation script
|
|
33
|
+
- GitHub Actions for documentation deployment
|
|
34
|
+
- GitHub Actions for continuous integration
|
|
35
|
+
- VitePress-based documentation with interactive examples
|
|
36
|
+
- Comprehensive API documentation pages
|
|
37
|
+
- React integration guide
|
|
38
|
+
- Installation guide with troubleshooting
|
|
39
|
+
|
|
40
|
+
### 🗑️ Removed
|
|
41
|
+
- Vite and related plugins from dependencies
|
|
42
|
+
- TypeDoc and its plugins
|
|
43
|
+
- Babel configuration (no longer needed)
|
|
44
|
+
- Old documentation build scripts
|
|
45
|
+
- Unused dependencies
|
|
46
|
+
|
|
47
|
+
## [2.3.3] - 2024-08-07
|
|
48
|
+
|
|
49
|
+
Previous releases...
|
|
50
|
+
|
|
51
|
+
[unreleased]: https://github.com/nDriaDev/futurable/compare/v2.3.3...HEAD
|
|
52
|
+
[2.3.3]: https://github.com/nDriaDev/futurable/releases/tag/v2.3.3
|