@devisfuture/mega-collection 2.4.5 → 2.4.6

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 +1 -1
package/README.md CHANGED
@@ -52,9 +52,9 @@ This works fine for small arrays. But with 10 000–100 000+ items, every call t
52
52
 
53
53
  This package solves this by building indexes ahead of time — special data structures that let you look up results without scanning the full array every time. You pay the cost once when the data arrives, and then each search, filter, or sort is much cheaper.
54
54
 
55
- The package has no dependencies.
56
- You can import only the parts you need.
55
+ ### Important
57
56
 
57
+ The package has no dependencies. You can import only the parts you need.
58
58
  Each engine has its own entry point: `/search`, `/filter`, `/sort`.
59
59
  If you import only `@devisfuture/mega-collection/search`, only search code goes into the bundle.
60
60
  Unused modules are not included.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devisfuture/mega-collection",
3
- "version": "2.4.5",
3
+ "version": "2.4.6",
4
4
  "description": "High-performance search, filter & sort engine for 100K+ item collections in JavaScript/TypeScript",
5
5
  "exports": {
6
6
  ".": {