@quenty/motor6d 7.42.1 → 7.43.0

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,18 @@
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
+ # [7.43.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.2...@quenty/motor6d@7.43.0) (2026-07-14)
7
+
8
+ ### Features
9
+
10
+ - **motor6d:** convert package to --!strict ([404bd2c](https://github.com/Quenty/NevermoreEngine/commit/404bd2ceb2e41b67c1d5537bc8210d46dd093787))
11
+
12
+ ## [7.42.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.1...@quenty/motor6d@7.42.2) (2026-06-02)
13
+
14
+ ### Bug Fixes
15
+
16
+ - Adjust formatting so our pnpm lock doesn't get formatted by prettier ([220c019](https://github.com/Quenty/NevermoreEngine/commit/220c0190b4644413f0a79383b0bc4f6bfe3786d3))
17
+
6
18
  ## [7.42.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.0...@quenty/motor6d@7.42.1) (2026-05-30)
7
19
 
8
20
  **Note:** Version bump only for package @quenty/motor6d
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/motor6d",
3
- "version": "7.42.1",
3
+ "version": "7.43.0",
4
4
  "description": "Centralized service to override motors on humanoids and other places",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,25 +29,26 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "@quenty/baseobject": "10.13.0",
32
- "@quenty/binder": "14.36.1",
32
+ "@quenty/binder": "14.37.0",
33
33
  "@quenty/brio": "14.30.1",
34
34
  "@quenty/cframeutils": "5.5.6",
35
35
  "@quenty/draw": "7.14.1",
36
36
  "@quenty/instanceutils": "13.30.1",
37
37
  "@quenty/loader": "10.11.0",
38
38
  "@quenty/maid": "3.9.0",
39
- "@quenty/playerhumanoidbinder": "14.37.1",
39
+ "@quenty/playerhumanoidbinder": "14.38.0",
40
+ "@quenty/r15utils": "13.31.1",
40
41
  "@quenty/rx": "13.28.3",
41
42
  "@quenty/servicebag": "11.18.1",
42
43
  "@quenty/signal": "7.13.1",
43
44
  "@quenty/spring": "10.12.0",
44
45
  "@quenty/steputils": "3.6.3",
45
46
  "@quenty/symbol": "3.5.2",
46
- "@quenty/tie": "10.40.1",
47
+ "@quenty/tie": "10.41.0",
47
48
  "@quenty/valueobject": "13.31.1"
48
49
  },
49
50
  "publishConfig": {
50
51
  "access": "public"
51
52
  },
52
- "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
53
+ "gitHead": "13f0162f4971a77378e55e9b7236aea94f0dd3a8"
53
54
  }
@@ -46,4 +46,4 @@ function Motor6DStackHumanoid.new(humanoid: Humanoid, serviceBag: ServiceBag.Ser
46
46
  return self
47
47
  end
48
48
 
49
- return PlayerHumanoidBinder.new("Motor6DStackHumanoid", Motor6DStackHumanoid)
49
+ return PlayerHumanoidBinder.new("Motor6DStackHumanoid", Motor6DStackHumanoid :: any)
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class Motor6DService
4
4
  ]=]
@@ -10,8 +10,15 @@ local ServiceBag = require("ServiceBag")
10
10
  local Motor6DService = {}
11
11
  Motor6DService.ServiceName = "Motor6DService"
12
12
 
13
- function Motor6DService:Init(serviceBag: ServiceBag.ServiceBag)
14
- assert(not self._serviceBag, "Already initialized")
13
+ export type Motor6DService = typeof(setmetatable(
14
+ {} :: {
15
+ _serviceBag: ServiceBag.ServiceBag,
16
+ },
17
+ {} :: typeof({ __index = Motor6DService })
18
+ ))
19
+
20
+ function Motor6DService.Init(self: Motor6DService, serviceBag: ServiceBag.ServiceBag): ()
21
+ assert(not (self :: any)._serviceBag, "Already initialized")
15
22
  self._serviceBag = assert(serviceBag, "No serviceBag")
16
23
 
17
24
  -- Services