@quenty/fzy 5.10.0 → 5.10.1

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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.10.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/fzy@5.10.0...@quenty/fzy@5.10.1) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/fzy
9
+
10
+
11
+
12
+
13
+
6
14
  # [5.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/fzy@5.9.3...@quenty/fzy@5.10.0) (2025-05-10)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/fzy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/fzy",
3
- "version": "5.10.0",
3
+ "version": "5.10.1",
4
4
  "description": "Lua implementation of fzy string search algorithm",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -24,10 +24,10 @@
24
24
  "Quenty"
25
25
  ],
26
26
  "dependencies": {
27
- "@quenty/loader": "^10.9.0"
27
+ "@quenty/loader": "^10.9.1"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
32
+ "gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
33
33
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  Tests for fzy-lua
3
4
 
@@ -34,8 +35,9 @@ THE SOFTWARE.
34
35
 
35
36
  local EPSILON = 0.000001
36
37
 
37
- local require =
38
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
38
+ local require = (require :: any)(
39
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
40
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
39
41
 
40
42
  local Fzy = require("Fzy")
41
43
  local Jest = require("Jest")