@quenty/observablecollection 12.2.0 → 12.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 +14 -14
- package/src/Shared/ObservableCountingMap.spec.lua +1 -1
- package/src/Shared/ObservableList.spec.lua +1 -1
- package/src/Shared/ObservableMap.spec.lua +1 -1
- package/src/Shared/ObservableMapList.spec.lua +1 -1
- package/src/Shared/ObservableSortedList.spec.lua +1 -1
- package/src/Shared/ObservableSortedList.story.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
|
+
# [12.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.2.0...@quenty/observablecollection@12.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
|
# [12.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.1.1...@quenty/observablecollection@12.2.0) (2024-04-27)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @quenty/observablecollection
|
package/default.project.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/observablecollection",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.3.0",
|
|
4
4
|
"description": "A set of observable collections, such as sets, maps, sorted lists, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,23 +27,23 @@
|
|
|
27
27
|
"Quenty"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/baseobject": "^10.
|
|
31
|
-
"@quenty/brio": "^14.
|
|
32
|
-
"@quenty/ducktype": "^5.
|
|
33
|
-
"@quenty/loader": "^10.
|
|
34
|
-
"@quenty/maid": "^3.
|
|
35
|
-
"@quenty/promise": "^10.
|
|
36
|
-
"@quenty/rx": "^13.
|
|
37
|
-
"@quenty/signal": "^7.
|
|
38
|
-
"@quenty/steputils": "^3.
|
|
39
|
-
"@quenty/symbol": "^3.
|
|
40
|
-
"@quenty/valueobject": "^13.
|
|
30
|
+
"@quenty/baseobject": "^10.3.0",
|
|
31
|
+
"@quenty/brio": "^14.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/rx": "^13.3.0",
|
|
37
|
+
"@quenty/signal": "^7.3.0",
|
|
38
|
+
"@quenty/steputils": "^3.4.0",
|
|
39
|
+
"@quenty/symbol": "^3.1.0",
|
|
40
|
+
"@quenty/valueobject": "^13.3.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@quenty/blend": "^12.
|
|
43
|
+
"@quenty/blend": "^12.3.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "3fd5cdca3128bf34c8d9dfae1e92d62533b6e6f5"
|
|
49
49
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservableCountingMap.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 ObservableCountingMap = require("ObservableCountingMap")
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservableList.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 ObservableList = require("ObservableList")
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservableMap.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 ObservableMap = require("ObservableMap")
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservableMapList.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 ObservableMapList = require("ObservableMapList")
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class ObservableSortedList.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 ObservableSortedList = require("ObservableSortedList")
|
|
8
8
|
local Rx = require("Rx")
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@class observableSortedList.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 Maid = require("Maid")
|
|
8
8
|
local ValueObject = require("ValueObject")
|