@quenty/templateprovider 11.18.4-canary.559.9f38947.0 → 11.19.0-canary.559.b31717d.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 +1 -1
- package/package.json +16 -16
- package/src/Shared/Modules/ModuleProvider.lua +2 -8
- package/src/Shared/Modules/ModuleProviderFakeLoader.lua +2 -2
- package/src/Shared/Replication/Util/TemplateReplicationModesUtils.lua +1 -1
- package/src/Shared/TaggedTemplateProvider.lua +2 -2
- package/src/Shared/TemplateProvider.lua +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +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
|
-
|
|
6
|
+
# [11.19.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.18.3...@quenty/templateprovider@11.19.0-canary.559.b31717d.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/templateprovider",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.19.0-canary.559.b31717d.0",
|
|
4
4
|
"description": "Base of a template retrieval system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,24 +25,24 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.8.
|
|
29
|
-
"@quenty/brio": "14.
|
|
30
|
-
"@quenty/collectionserviceutils": "8.
|
|
31
|
-
"@quenty/ducktype": "5.8.
|
|
32
|
-
"@quenty/insertserviceutils": "10.
|
|
33
|
-
"@quenty/instanceutils": "13.
|
|
34
|
-
"@quenty/loader": "10.8.
|
|
35
|
-
"@quenty/maid": "3.4.
|
|
36
|
-
"@quenty/observablecollection": "12.
|
|
37
|
-
"@quenty/promise": "10.
|
|
38
|
-
"@quenty/promisemaid": "5.
|
|
39
|
-
"@quenty/remoting": "12.
|
|
40
|
-
"@quenty/rx": "13.
|
|
28
|
+
"@quenty/baseobject": "10.8.3",
|
|
29
|
+
"@quenty/brio": "14.18.0-canary.559.b31717d.0",
|
|
30
|
+
"@quenty/collectionserviceutils": "8.18.0-canary.559.b31717d.0",
|
|
31
|
+
"@quenty/ducktype": "5.8.4",
|
|
32
|
+
"@quenty/insertserviceutils": "10.11.0-canary.559.b31717d.0",
|
|
33
|
+
"@quenty/instanceutils": "13.18.0-canary.559.b31717d.0",
|
|
34
|
+
"@quenty/loader": "10.8.3",
|
|
35
|
+
"@quenty/maid": "3.4.3",
|
|
36
|
+
"@quenty/observablecollection": "12.21.0-canary.559.b31717d.0",
|
|
37
|
+
"@quenty/promise": "10.11.0-canary.559.b31717d.0",
|
|
38
|
+
"@quenty/promisemaid": "5.11.0-canary.559.b31717d.0",
|
|
39
|
+
"@quenty/remoting": "12.19.0-canary.559.b31717d.0",
|
|
40
|
+
"@quenty/rx": "13.18.0-canary.559.b31717d.0",
|
|
41
41
|
"@quenty/string": "3.3.3",
|
|
42
|
-
"@quenty/table": "3.7.
|
|
42
|
+
"@quenty/table": "3.7.4"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
|
|
48
48
|
}
|
|
@@ -86,13 +86,7 @@ function ModuleProvider:_addToRegistery(moduleScript)
|
|
|
86
86
|
xpcall(function()
|
|
87
87
|
_module = require(moduleScript)
|
|
88
88
|
end, function(err)
|
|
89
|
-
error(
|
|
90
|
-
string.format(
|
|
91
|
-
"[ModuleProvider._addToRegistery] - Failed to load %q due to %q",
|
|
92
|
-
moduleScript:GetFullName(),
|
|
93
|
-
tostring(err)
|
|
94
|
-
)
|
|
95
|
-
)
|
|
89
|
+
error(string.format("[ModuleProvider._addToRegistery] - Failed to load %q due to %q", moduleScript:GetFullName(), tostring(err)))
|
|
96
90
|
end)
|
|
97
91
|
|
|
98
92
|
if self._checkModule then
|
|
@@ -107,4 +101,4 @@ function ModuleProvider:_addToRegistery(moduleScript)
|
|
|
107
101
|
self._registry[moduleScript.Name] = _module
|
|
108
102
|
end
|
|
109
103
|
|
|
110
|
-
return ModuleProvider
|
|
104
|
+
return ModuleProvider
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local RxCollectionServiceUtils = require("RxCollectionServiceUtils")
|
|
10
9
|
local TemplateProvider = require("TemplateProvider")
|
|
10
|
+
local RxCollectionServiceUtils = require("RxCollectionServiceUtils")
|
|
11
11
|
|
|
12
12
|
local TaggedTemplateProvider = {}
|
|
13
13
|
|
|
@@ -18,4 +18,4 @@ function TaggedTemplateProvider.new(providerName: string, tagName: string): Temp
|
|
|
18
18
|
return TemplateProvider.new(providerName, RxCollectionServiceUtils.observeTaggedBrio(tagName))
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
return TaggedTemplateProvider
|
|
21
|
+
return TaggedTemplateProvider
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
|
|
44
44
|
local require = require(script.Parent.loader).load(script)
|
|
45
45
|
|
|
46
|
-
local HttpService = game:GetService("HttpService")
|
|
47
46
|
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
47
|
+
local HttpService = game:GetService("HttpService")
|
|
48
48
|
|
|
49
49
|
local Brio = require("Brio")
|
|
50
50
|
local DuckTypeUtils = require("DuckTypeUtils")
|
|
@@ -57,10 +57,10 @@ local PromiseMaidUtils = require("PromiseMaidUtils")
|
|
|
57
57
|
local Remoting = require("Remoting")
|
|
58
58
|
local Rx = require("Rx")
|
|
59
59
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
60
|
-
local ServiceBag = require("ServiceBag")
|
|
61
60
|
local String = require("String")
|
|
62
61
|
local TemplateReplicationModes = require("TemplateReplicationModes")
|
|
63
62
|
local TemplateReplicationModesUtils = require("TemplateReplicationModesUtils")
|
|
63
|
+
local ServiceBag = require("ServiceBag")
|
|
64
64
|
|
|
65
65
|
local TOMBSTONE_ID_ATTRIBUTE = "UnreplicatedTemplateId"
|
|
66
66
|
local TOMBSTONE_NAME_POSTFIX_UNLOADED = "_Unloaded"
|
|
@@ -704,6 +704,7 @@ TemplateProvider.PromiseClone = assert(TemplateProvider.PromiseCloneTemplate, "M
|
|
|
704
704
|
TemplateProvider.GetAllTemplates = assert(TemplateProvider.GetTemplateList, "Missing method")
|
|
705
705
|
TemplateProvider.GetAll = assert(TemplateProvider.GetTemplateList, "Missing method")
|
|
706
706
|
|
|
707
|
+
|
|
707
708
|
--[=[
|
|
708
709
|
Cleans up the provider
|
|
709
710
|
]=]
|
|
@@ -711,4 +712,4 @@ function TemplateProvider.Destroy(self: TemplateProvider)
|
|
|
711
712
|
self._maid:DoCleaning()
|
|
712
713
|
end
|
|
713
714
|
|
|
714
|
-
return TemplateProvider
|
|
715
|
+
return TemplateProvider
|