@quenty/instanceutils 13.18.0-canary.ae8d76d.0 → 13.18.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
- # [13.18.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.17.3...@quenty/instanceutils@13.18.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [13.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@13.17.3...@quenty/instanceutils@13.18.0) (2025-05-10)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/instanceutils
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/instanceutils",
3
- "version": "13.18.0-canary.ae8d76d.0",
3
+ "version": "13.18.0",
4
4
  "description": "Utility functions involving instances in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,14 +26,14 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
30
- "@quenty/loader": "10.8.3",
31
- "@quenty/maid": "3.4.3",
32
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
33
- "@quenty/symbol": "3.4.2"
29
+ "@quenty/brio": "^14.18.0",
30
+ "@quenty/loader": "^10.9.0",
31
+ "@quenty/maid": "^3.5.0",
32
+ "@quenty/rx": "^13.18.0",
33
+ "@quenty/symbol": "^3.5.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
38
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
39
39
  }
@@ -450,7 +450,10 @@ end
450
450
  @param className string
451
451
  @return Observable<Instance>
452
452
  ]=]
453
- function RxInstanceUtils.observeDescendantsOfClassBrio(parent: Instance, className: string): Observable.Observable<Brio.Brio<Instance>>
453
+ function RxInstanceUtils.observeDescendantsOfClassBrio(
454
+ parent: Instance,
455
+ className: string
456
+ ): Observable.Observable<Brio.Brio<Instance>>
454
457
  assert(typeof(parent) == "Instance", "Bad parent")
455
458
  assert(type(className) == "string", "Bad className")
456
459
 
@@ -2,7 +2,8 @@
2
2
  @class RxInstanceUtils.spec.lua
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
5
+ local require =
6
+ require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
7
 
7
8
  local Jest = require("Jest")
8
9
  local RxInstanceUtils = require("RxInstanceUtils")
@@ -23,4 +24,4 @@ describe("RxInstanceUtils.observeChildrenBrio", function()
23
24
 
24
25
  expect(externalResult).toEqual(nil)
25
26
  end)
26
- end)
27
+ end)