@quenty/brio 14.30.0 → 14.30.1
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 +4 -0
- package/package.json +4 -4
- package/src/Shared/Brio.lua +4 -4
- package/src/Shared/RxBrioUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [14.30.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/brio@14.30.0...@quenty/brio@14.30.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/brio
|
|
9
|
+
|
|
6
10
|
# [14.30.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/brio@14.29.2...@quenty/brio@14.30.0) (2026-05-29)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/brio",
|
|
3
|
-
"version": "14.30.
|
|
3
|
+
"version": "14.30.1",
|
|
4
4
|
"description": "Brios wrap an object and either are alive or dead",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@quenty/loader": "10.11.0",
|
|
33
33
|
"@quenty/maid": "3.9.0",
|
|
34
34
|
"@quenty/nevermore-test-runner": "1.4.0",
|
|
35
|
-
"@quenty/rx": "13.28.
|
|
36
|
-
"@quenty/signal": "7.13.
|
|
35
|
+
"@quenty/rx": "13.28.3",
|
|
36
|
+
"@quenty/signal": "7.13.1",
|
|
37
37
|
"@quenty/steputils": "3.6.3",
|
|
38
38
|
"@quenty/table": "3.9.2",
|
|
39
39
|
"@quentystudios/jest-lua": "3.10.0-quenty.2"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
45
45
|
}
|
package/src/Shared/Brio.lua
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
Brios are useful for downstream events where you want to emit a resource. Typically
|
|
23
23
|
brios should be killed when their source is killed. Brios are intended to be merged
|
|
24
|
-
with downstream brios
|
|
24
|
+
with downstream brios to create a chain of reliable resources.
|
|
25
25
|
|
|
26
26
|
```lua
|
|
27
27
|
local brio = Brio.new("a", "b")
|
|
@@ -103,7 +103,7 @@ function Brio.new<T...>(...: T...): Brio<T...>
|
|
|
103
103
|
end
|
|
104
104
|
|
|
105
105
|
--[=[
|
|
106
|
-
Constructs a new brio that will cleanup
|
|
106
|
+
Constructs a new brio that will cleanup after the set amount of time
|
|
107
107
|
|
|
108
108
|
@since 3.6.0
|
|
109
109
|
@param time number
|
|
@@ -153,7 +153,7 @@ function Brio.GetDiedSignal<T...>(self: Brio<T...>): Signal.Signal<T...>
|
|
|
153
153
|
end
|
|
154
154
|
|
|
155
155
|
--[=[
|
|
156
|
-
Returns true
|
|
156
|
+
Returns true if the brio is dead.
|
|
157
157
|
|
|
158
158
|
```lua
|
|
159
159
|
local brio = Brio.new("a", "b")
|
|
@@ -287,7 +287,7 @@ function Brio.Destroy<T...>(self: Brio<T...>)
|
|
|
287
287
|
end
|
|
288
288
|
|
|
289
289
|
--[=[
|
|
290
|
-
Alias for Destroy.
|
|
290
|
+
Alias for [Brio.Destroy].
|
|
291
291
|
@method Kill
|
|
292
292
|
@within Brio
|
|
293
293
|
]=]
|
|
@@ -471,7 +471,7 @@ end
|
|
|
471
471
|
3. All resources are invalidated
|
|
472
472
|
4. We still wanted to be able to use most of the resources
|
|
473
473
|
|
|
474
|
-
With this method we are able to do this, as we'll re-emit a table with all
|
|
474
|
+
With this method we are able to do this, as we'll re-emit a table with all resources
|
|
475
475
|
except the invalidated one.
|
|
476
476
|
|
|
477
477
|
@since 3.6.0
|