@quenty/templateprovider 11.23.5-canary.34546af.0 → 11.23.6-canary.97bd47d.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 -1
- package/package.json +12 -11
- package/src/Shared/TemplateProvider.lua +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +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
|
-
## [11.23.
|
|
6
|
+
## [11.23.6-canary.97bd47d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.23.5...@quenty/templateprovider@11.23.6-canary.97bd47d.0) (2025-12-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix dependencies missing in packages ([97bd47d](https://github.com/Quenty/NevermoreEngine/commit/97bd47d341017152f91a28d8444252d20a8de9fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [11.23.5](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.23.4...@quenty/templateprovider@11.23.5) (2025-12-29)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/templateprovider
|
|
9
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/templateprovider",
|
|
3
|
-
"version": "11.23.
|
|
3
|
+
"version": "11.23.6-canary.97bd47d.0",
|
|
4
4
|
"description": "Base of a template retrieval system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,23 +26,24 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/baseobject": "10.9.0",
|
|
29
|
-
"@quenty/brio": "14.20.
|
|
30
|
-
"@quenty/collectionserviceutils": "8.21.
|
|
29
|
+
"@quenty/brio": "14.20.4-canary.97bd47d.0",
|
|
30
|
+
"@quenty/collectionserviceutils": "8.21.4-canary.97bd47d.0",
|
|
31
31
|
"@quenty/ducktype": "5.9.0",
|
|
32
|
-
"@quenty/insertserviceutils": "10.12.
|
|
33
|
-
"@quenty/instanceutils": "13.20.
|
|
32
|
+
"@quenty/insertserviceutils": "10.12.3-canary.97bd47d.0",
|
|
33
|
+
"@quenty/instanceutils": "13.20.5-canary.97bd47d.0",
|
|
34
34
|
"@quenty/loader": "10.9.0",
|
|
35
35
|
"@quenty/maid": "3.5.0",
|
|
36
|
-
"@quenty/observablecollection": "12.24.
|
|
37
|
-
"@quenty/promise": "10.12.
|
|
38
|
-
"@quenty/promisemaid": "5.12.
|
|
39
|
-
"@quenty/remoting": "12.21.
|
|
40
|
-
"@quenty/rx": "13.20.
|
|
36
|
+
"@quenty/observablecollection": "12.24.6-canary.97bd47d.0",
|
|
37
|
+
"@quenty/promise": "10.12.3-canary.97bd47d.0",
|
|
38
|
+
"@quenty/promisemaid": "5.12.3-canary.97bd47d.0",
|
|
39
|
+
"@quenty/remoting": "12.21.5-canary.97bd47d.0",
|
|
40
|
+
"@quenty/rx": "13.20.3-canary.97bd47d.0",
|
|
41
|
+
"@quenty/servicebag": "11.13.3",
|
|
41
42
|
"@quenty/string": "3.3.3",
|
|
42
43
|
"@quenty/table": "3.8.0"
|
|
43
44
|
},
|
|
44
45
|
"publishConfig": {
|
|
45
46
|
"access": "public"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "97bd47d341017152f91a28d8444252d20a8de9fa"
|
|
48
49
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Additionally, you can provide template overrides as the last added template will always be used.
|
|
6
6
|
|
|
7
7
|
```lua
|
|
8
|
-
-- shared/
|
|
8
|
+
-- shared/MyCustomTemplateProvider.lua
|
|
9
9
|
|
|
10
10
|
return TemplateProvider.new(script.Name, script) -- Load locally
|
|
11
11
|
```
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
```lua
|
|
22
22
|
-- Server
|
|
23
23
|
local serviceBag = ServiceBag.new()
|
|
24
|
-
local templates = serviceBag:GetService(require("
|
|
24
|
+
local templates = serviceBag:GetService(require("MyCustomTemplateProvider"))
|
|
25
25
|
serviceBag:Init()
|
|
26
26
|
serviceBag:Start()
|
|
27
27
|
```
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
```lua
|
|
30
30
|
-- Client
|
|
31
31
|
local serviceBag = ServiceBag.new()
|
|
32
|
-
local templates = serviceBag:GetService(require("
|
|
32
|
+
local templates = serviceBag:GetService(require("MyCustomTemplateProvider"))
|
|
33
33
|
serviceBag:Init()
|
|
34
34
|
serviceBag:Start()
|
|
35
35
|
|