@quenty/templateprovider 11.19.0-canary.ae8d76d.0 → 11.19.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 +17 -17
- package/src/Shared/Modules/ModuleProvider.lua +8 -2
- 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 +3 -4
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
|
-
# [11.19.0
|
|
6
|
+
# [11.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.18.3...@quenty/templateprovider@11.19.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.19.0
|
|
3
|
+
"version": "11.19.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.
|
|
29
|
-
"@quenty/brio": "14.18.0
|
|
30
|
-
"@quenty/collectionserviceutils": "8.18.0
|
|
31
|
-
"@quenty/ducktype": "5.
|
|
32
|
-
"@quenty/insertserviceutils": "10.11.0
|
|
33
|
-
"@quenty/instanceutils": "13.18.0
|
|
34
|
-
"@quenty/loader": "10.
|
|
35
|
-
"@quenty/maid": "3.
|
|
36
|
-
"@quenty/observablecollection": "12.21.0
|
|
37
|
-
"@quenty/promise": "10.11.0
|
|
38
|
-
"@quenty/promisemaid": "5.11.0
|
|
39
|
-
"@quenty/remoting": "12.19.0
|
|
40
|
-
"@quenty/rx": "13.18.0
|
|
41
|
-
"@quenty/string": "3.3.3",
|
|
42
|
-
"@quenty/table": "3.
|
|
28
|
+
"@quenty/baseobject": "^10.9.0",
|
|
29
|
+
"@quenty/brio": "^14.18.0",
|
|
30
|
+
"@quenty/collectionserviceutils": "^8.18.0",
|
|
31
|
+
"@quenty/ducktype": "^5.9.0",
|
|
32
|
+
"@quenty/insertserviceutils": "^10.11.0",
|
|
33
|
+
"@quenty/instanceutils": "^13.18.0",
|
|
34
|
+
"@quenty/loader": "^10.9.0",
|
|
35
|
+
"@quenty/maid": "^3.5.0",
|
|
36
|
+
"@quenty/observablecollection": "^12.21.0",
|
|
37
|
+
"@quenty/promise": "^10.11.0",
|
|
38
|
+
"@quenty/promisemaid": "^5.11.0",
|
|
39
|
+
"@quenty/remoting": "^12.19.0",
|
|
40
|
+
"@quenty/rx": "^13.18.0",
|
|
41
|
+
"@quenty/string": "^3.3.3",
|
|
42
|
+
"@quenty/table": "^3.8.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
48
48
|
}
|
|
@@ -86,7 +86,13 @@ function ModuleProvider:_addToRegistery(moduleScript)
|
|
|
86
86
|
xpcall(function()
|
|
87
87
|
_module = require(moduleScript)
|
|
88
88
|
end, function(err)
|
|
89
|
-
error(
|
|
89
|
+
error(
|
|
90
|
+
string.format(
|
|
91
|
+
"[ModuleProvider._addToRegistery] - Failed to load %q due to %q",
|
|
92
|
+
moduleScript:GetFullName(),
|
|
93
|
+
tostring(err)
|
|
94
|
+
)
|
|
95
|
+
)
|
|
90
96
|
end)
|
|
91
97
|
|
|
92
98
|
if self._checkModule then
|
|
@@ -101,4 +107,4 @@ function ModuleProvider:_addToRegistery(moduleScript)
|
|
|
101
107
|
self._registry[moduleScript.Name] = _module
|
|
102
108
|
end
|
|
103
109
|
|
|
104
|
-
return ModuleProvider
|
|
110
|
+
return ModuleProvider
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local TemplateProvider = require("TemplateProvider")
|
|
10
9
|
local RxCollectionServiceUtils = require("RxCollectionServiceUtils")
|
|
10
|
+
local TemplateProvider = require("TemplateProvider")
|
|
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 ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
47
46
|
local HttpService = game:GetService("HttpService")
|
|
47
|
+
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
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")
|
|
60
61
|
local String = require("String")
|
|
61
62
|
local TemplateReplicationModes = require("TemplateReplicationModes")
|
|
62
63
|
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,7 +704,6 @@ 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
|
-
|
|
708
707
|
--[=[
|
|
709
708
|
Cleans up the provider
|
|
710
709
|
]=]
|
|
@@ -712,4 +711,4 @@ function TemplateProvider.Destroy(self: TemplateProvider)
|
|
|
712
711
|
self._maid:DoCleaning()
|
|
713
712
|
end
|
|
714
713
|
|
|
715
|
-
return TemplateProvider
|
|
714
|
+
return TemplateProvider
|