@quenty/brio 14.2.0 → 14.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
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
|
+
# [14.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/brio@14.2.0...@quenty/brio@14.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
|
# [14.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/brio@14.1.0...@quenty/brio@14.2.0) (2024-04-27)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @quenty/brio
|
package/default.project.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/brio",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.3.0",
|
|
4
4
|
"description": "Brios wrap an object and either are alive or dead",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/loader": "^10.
|
|
30
|
-
"@quenty/maid": "^3.
|
|
31
|
-
"@quenty/rx": "^13.
|
|
32
|
-
"@quenty/signal": "^7.
|
|
33
|
-
"@quenty/steputils": "^3.
|
|
29
|
+
"@quenty/loader": "^10.3.0",
|
|
30
|
+
"@quenty/maid": "^3.2.0",
|
|
31
|
+
"@quenty/rx": "^13.3.0",
|
|
32
|
+
"@quenty/signal": "^7.3.0",
|
|
33
|
+
"@quenty/steputils": "^3.4.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "3fd5cdca3128bf34c8d9dfae1e92d62533b6e6f5"
|
|
39
39
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Unit tests for BrioUtils.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 BrioUtils = require("BrioUtils")
|
|
8
8
|
local Brio = require("Brio")
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Unit tests for RxBrioUtils.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 RxBrioUtils = require("RxBrioUtils")
|
|
8
8
|
local Brio = require("Brio")
|