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