@quenty/humanoidtracker 13.18.0-canary.ae8d76d.0 → 13.18.1-canary.4ea661c.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,7 +3,15 @@
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
- # [13.18.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.17.3...@quenty/humanoidtracker@13.18.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [13.18.1-canary.4ea661c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.18.0...@quenty/humanoidtracker@13.18.1-canary.4ea661c.0) (2025-08-12)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidtracker
9
+
10
+
11
+
12
+
13
+
14
+ # [13.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.17.3...@quenty/humanoidtracker@13.18.0) (2025-05-10)
7
15
 
8
16
 
9
17
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidtracker",
3
- "version": "13.18.0-canary.ae8d76d.0",
3
+ "version": "13.18.1-canary.4ea661c.0",
4
4
  "description": "HumanoidTracker for Roblox - Tracks a player's character's humanoid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.8.3",
29
- "@quenty/loader": "10.8.3",
30
- "@quenty/maid": "3.4.3",
31
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
32
- "@quenty/signal": "7.10.3",
33
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/loader": "10.9.0",
30
+ "@quenty/maid": "3.5.0",
31
+ "@quenty/promise": "10.11.0",
32
+ "@quenty/signal": "7.11.1-canary.4ea661c.0",
33
+ "@quenty/valueobject": "13.18.1-canary.4ea661c.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
38
+ "gitHead": "4ea661c3fb52b8a3843c7d879c98c1de8a733798"
39
39
  }
@@ -6,11 +6,11 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
+ local BaseObject = require("BaseObject")
9
10
  local Maid = require("Maid")
11
+ local Promise = require("Promise")
10
12
  local Signal = require("Signal")
11
13
  local ValueObject = require("ValueObject")
12
- local Promise = require("Promise")
13
- local BaseObject = require("BaseObject")
14
14
 
15
15
  local HumanoidTracker = setmetatable({}, BaseObject)
16
16
  HumanoidTracker.ClassName = "HumanoidTracker"
@@ -180,4 +180,4 @@ function HumanoidTracker._handleHumanoidChanged(self: HumanoidTracker, newHumano
180
180
  end))
181
181
  end
182
182
 
183
- return HumanoidTracker
183
+ return HumanoidTracker
@@ -9,10 +9,10 @@ local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local Players = game:GetService("Players")
11
11
 
12
+ local Brio = require("Brio")
12
13
  local HumanoidTracker = require("HumanoidTracker")
13
14
  local Maid = require("Maid")
14
15
  local Observable = require("Observable")
15
- local Brio = require("Brio")
16
16
 
17
17
  local HumanoidTrackerService = {}
18
18
  HumanoidTrackerService.ServiceName = "HumanoidTrackerService"