@quenty/rx 13.2.0 → 13.3.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 +12 -0
- package/default.project.json +1 -0
- package/package.json +12 -12
- package/src/Shared/ObservablePerformance.story.lua +1 -1
- package/src/Shared/Rx.spec.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.2.0...@quenty/rx@13.3.0) (2024-05-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Bootstrap specifically to loader ([7f4d4f9](https://github.com/Quenty/NevermoreEngine/commit/7f4d4f9cd4a6602af8daaf04983bb349dafc7e95))
|
|
12
|
+
* Fix .package-lock.json replicating in packages ([75d0efe](https://github.com/Quenty/NevermoreEngine/commit/75d0efeef239f221d93352af71a5b3e930ec23c5))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [13.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.1.0...@quenty/rx@13.2.0) (2024-04-27)
|
|
7
19
|
|
|
8
20
|
|
package/default.project.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/rx",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.3.0",
|
|
4
4
|
"description": "Quenty's reactive library for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"Quenty"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/cancellabledelay": "^3.
|
|
31
|
-
"@quenty/canceltoken": "^11.
|
|
32
|
-
"@quenty/ducktype": "^5.
|
|
33
|
-
"@quenty/loader": "^10.
|
|
34
|
-
"@quenty/maid": "^3.
|
|
35
|
-
"@quenty/promise": "^10.
|
|
36
|
-
"@quenty/signal": "^7.
|
|
37
|
-
"@quenty/symbol": "^3.
|
|
38
|
-
"@quenty/table": "^3.
|
|
39
|
-
"@quenty/throttle": "^10.
|
|
30
|
+
"@quenty/cancellabledelay": "^3.5.0",
|
|
31
|
+
"@quenty/canceltoken": "^11.3.0",
|
|
32
|
+
"@quenty/ducktype": "^5.3.0",
|
|
33
|
+
"@quenty/loader": "^10.3.0",
|
|
34
|
+
"@quenty/maid": "^3.2.0",
|
|
35
|
+
"@quenty/promise": "^10.3.0",
|
|
36
|
+
"@quenty/signal": "^7.3.0",
|
|
37
|
+
"@quenty/symbol": "^3.1.0",
|
|
38
|
+
"@quenty/table": "^3.5.0",
|
|
39
|
+
"@quenty/throttle": "^10.3.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3fd5cdca3128bf34c8d9dfae1e92d62533b6e6f5"
|
|
45
45
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservablePerformance.story
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).
|
|
5
|
+
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
6
|
|
|
7
7
|
local Observable = require("Observable")
|
|
8
8
|
|
package/src/Shared/Rx.spec.lua
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class Rx.spec.lua
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).
|
|
5
|
+
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
6
|
|
|
7
7
|
local Rx = require("Rx")
|
|
8
8
|
|