@yoch/frozenminisearch 1.2.1 → 1.2.2
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 +11 -0
- package/README.md +12 -13
- package/dist/cjs/index.cjs +295 -254
- package/dist/es/index.js +295 -254
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yoch/frozenminisearch",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Read-only Node.js full-text search — compact frozen indexes and binary snapshots",
|
|
5
5
|
"main": "dist/cjs/index.cjs",
|
|
6
6
|
"module": "dist/es/index.js",
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
"benchmark:diff:search:run": "npm run build && BENCH_SEARCH_ONLY=1 node --expose-gc benchmarks/diffBaseline.js --run",
|
|
124
124
|
"benchmark:baseline:update": "npm run build && node --expose-gc benchmarks/captureBaseline.js --reference",
|
|
125
125
|
"benchmark:and-gate-tuning": "npx --yes tsx benchmarks/and-gate-tuning.mjs",
|
|
126
|
+
"benchmark:gate-posting-ratio": "npm run build && npx --yes tsx benchmarks/scripts/calibrate-gate-posting-ratio.mjs",
|
|
126
127
|
"benchmark:diff": "node --expose-gc benchmarks/diffBaseline.js",
|
|
127
128
|
"benchmark:diff:run": "npm run build && node --expose-gc benchmarks/diffBaseline.js --run",
|
|
128
129
|
"benchmark:targeted": "npm run build && node --expose-gc benchmarks/scripts/targeted-failures.mjs",
|