@quenty/inputkeymaputils 14.41.0-canary.678.24427877603.0 → 14.41.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,7 +3,7 @@
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
- # [14.41.0-canary.678.24427877603.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.40.0...@quenty/inputkeymaputils@14.41.0-canary.678.24427877603.0) (2026-04-14)
6
+ ## [14.41.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.41.0...@quenty/inputkeymaputils@14.41.1) (2026-04-29)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/inputkeymaputils
9
9
 
@@ -11,6 +11,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
+ # [14.41.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.40.0...@quenty/inputkeymaputils@14.41.0) (2026-04-23)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Fix dependencies list ([776b270](https://github.com/Quenty/NevermoreEngine/commit/776b2700b97d877b70c487d2f47092bacc373e7a))
20
+
21
+
22
+
23
+
24
+
14
25
  # [14.40.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@14.39.0...@quenty/inputkeymaputils@14.40.0) (2026-04-14)
15
26
 
16
27
  **Note:** Version bump only for package @quenty/inputkeymaputils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/inputkeymaputils",
3
- "version": "14.41.0-canary.678.24427877603.0",
3
+ "version": "14.41.1",
4
4
  "description": "System to define rebindable key bindings and inputs for Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,28 +29,29 @@
29
29
  "Quenty"
30
30
  ],
31
31
  "dependencies": {
32
- "@quenty/baseobject": "10.12.0",
33
- "@quenty/brio": "14.29.0-canary.678.24427877603.0",
34
- "@quenty/clienttranslator": "14.35.0-canary.678.24427877603.0",
35
- "@quenty/ducktype": "5.10.0",
32
+ "@quenty/baseobject": "10.13.0",
33
+ "@quenty/brio": "14.29.1",
34
+ "@quenty/clienttranslator": "14.35.1",
35
+ "@quenty/ducktype": "5.11.0",
36
36
  "@quenty/enumutils": "3.4.5",
37
- "@quenty/inputmode": "13.32.0-canary.678.24427877603.0",
38
- "@quenty/loader": "10.10.0",
39
- "@quenty/maid": "3.8.0",
40
- "@quenty/nevermore-test-runner": "1.3.0",
41
- "@quenty/observablecollection": "12.36.0-canary.678.24427877603.0",
37
+ "@quenty/inputmode": "13.32.1",
38
+ "@quenty/loader": "10.11.0",
39
+ "@quenty/maid": "3.9.0",
40
+ "@quenty/nevermore-test-runner": "1.4.0",
41
+ "@quenty/observablecollection": "12.36.1",
42
42
  "@quenty/pseudolocalize": "3.5.2",
43
- "@quenty/rx": "13.28.0-canary.678.24427877603.0",
44
- "@quenty/servicebag": "11.16.0",
45
- "@quenty/statestack": "14.31.0-canary.678.24427877603.0",
43
+ "@quenty/rx": "13.28.1",
44
+ "@quenty/servicebag": "11.17.0",
45
+ "@quenty/signal": "7.13.0",
46
+ "@quenty/statestack": "14.31.1",
46
47
  "@quenty/string": "3.3.6",
47
48
  "@quenty/table": "3.9.2",
48
- "@quenty/valuebaseutils": "13.29.0-canary.678.24427877603.0",
49
- "@quenty/valueobject": "13.30.0-canary.678.24427877603.0",
49
+ "@quenty/valuebaseutils": "13.29.1",
50
+ "@quenty/valueobject": "13.30.1",
50
51
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
51
52
  },
52
53
  "publishConfig": {
53
54
  "access": "public"
54
55
  },
55
- "gitHead": "ac87c7f47e9a5801392a70d586ed449463a725b8"
56
+ "gitHead": "6801a02bc7e7de951df4b9f65c0efc27b642db70"
56
57
  }
@@ -4,12 +4,13 @@
4
4
  ]]
5
5
  local ServerScriptService = game:GetService("ServerScriptService")
6
6
 
7
- local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
8
- local require = require(loader).bootstrapGame(ServerScriptService.inputkeymaputils)
7
+ local root = ServerScriptService.inputkeymaputils
8
+ local loader = root:FindFirstChild("LoaderUtils", true).Parent
9
+ local require = require(loader).bootstrapGame(root)
9
10
 
10
11
  local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
11
12
 
12
- if NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService.inputkeymaputils) then
13
+ if NevermoreTestRunnerUtils.runTestsIfNeededAsync(root) then
13
14
  return
14
15
  end
15
16