@quenty/racketingropeconstraint 12.21.0-canary.ae8d76d.0 → 12.21.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,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
- # [12.21.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/racketingropeconstraint@12.20.3...@quenty/racketingropeconstraint@12.21.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [12.21.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/racketingropeconstraint@12.20.3...@quenty/racketingropeconstraint@12.21.0) (2025-05-10)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/racketingropeconstraint
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/racketingropeconstraint",
3
- "version": "12.21.0-canary.ae8d76d.0",
3
+ "version": "12.21.0",
4
4
  "description": "Tries to racket a rope constraint back down to a reasonable length",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,16 +27,16 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "10.8.3",
31
- "@quenty/binder": "14.20.0-canary.ae8d76d.0",
32
- "@quenty/loader": "10.8.3",
33
- "@quenty/overriddenproperty": "10.9.3",
34
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
35
- "@quenty/tie": "10.21.0-canary.ae8d76d.0",
36
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
30
+ "@quenty/baseobject": "^10.9.0",
31
+ "@quenty/binder": "^14.20.0",
32
+ "@quenty/loader": "^10.9.0",
33
+ "@quenty/overriddenproperty": "^10.10.0",
34
+ "@quenty/promise": "^10.11.0",
35
+ "@quenty/tie": "^10.21.0",
36
+ "@quenty/valueobject": "^13.18.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
41
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
42
42
  }
@@ -12,8 +12,8 @@ local Binder = require("Binder")
12
12
  local OverriddenProperty = require("OverriddenProperty")
13
13
  local Promise = require("Promise")
14
14
  local RacketingRopeConstraintInterface = require("RacketingRopeConstraintInterface")
15
- local ValueObject = require("ValueObject")
16
15
  local TieRealmService = require("TieRealmService")
16
+ local ValueObject = require("ValueObject")
17
17
 
18
18
  local START_DISTANCE = 1000
19
19
 
@@ -48,7 +48,9 @@ function RacketingRopeConstraint.new(ropeConstraint, serviceBag)
48
48
  self._overriddenLength = self._maid:Add(OverriddenProperty.new(self._obj, "Length"))
49
49
  end
50
50
 
51
- self._maid:GiveTask(RacketingRopeConstraintInterface:Implement(self._obj, self, self._tieRealmService:GetTieRealm()))
51
+ self._maid:GiveTask(
52
+ RacketingRopeConstraintInterface:Implement(self._obj, self, self._tieRealmService:GetTieRealm())
53
+ )
52
54
 
53
55
  return self
54
56
  end
@@ -133,4 +135,4 @@ function RacketingRopeConstraint:_setLength(length)
133
135
  end
134
136
  end
135
137
 
136
- return Binder.new("RacketingRopeConstraint", RacketingRopeConstraint)
138
+ return Binder.new("RacketingRopeConstraint", RacketingRopeConstraint)
@@ -7,6 +7,6 @@ local require = require(script.Parent.loader).load(script)
7
7
  local TieDefinition = require("TieDefinition")
8
8
 
9
9
  return TieDefinition.new("RacketingRopeConstraint", {
10
- PromiseConstrained = TieDefinition.Types.METHOD;
11
- ObserveIsConstrained = TieDefinition.Types.METHOD;
12
- })
10
+ PromiseConstrained = TieDefinition.Types.METHOD,
11
+ ObserveIsConstrained = TieDefinition.Types.METHOD,
12
+ })