@quenty/templateprovider 11.23.5 → 11.23.6-canary.b2b6e1d.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,17 @@
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-canary.b2b6e1d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.23.5...@quenty/templateprovider@11.23.6-canary.b2b6e1d.0) (2025-12-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix dependencies missing in packages ([f294cf2](https://github.com/Quenty/NevermoreEngine/commit/f294cf2eec1dd0e95b09d4126287b812b77e1e72))
12
+
13
+
14
+
15
+
16
+
6
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/templateprovider",
3
- "version": "11.23.5",
3
+ "version": "11.23.6-canary.b2b6e1d.0",
4
4
  "description": "Base of a template retrieval system",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,24 +25,25 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^10.9.0",
29
- "@quenty/brio": "^14.20.3",
30
- "@quenty/collectionserviceutils": "^8.21.3",
31
- "@quenty/ducktype": "^5.9.0",
32
- "@quenty/insertserviceutils": "^10.12.2",
33
- "@quenty/instanceutils": "^13.20.4",
34
- "@quenty/loader": "^10.9.0",
35
- "@quenty/maid": "^3.5.0",
36
- "@quenty/observablecollection": "^12.24.5",
37
- "@quenty/promise": "^10.12.2",
38
- "@quenty/promisemaid": "^5.12.2",
39
- "@quenty/remoting": "^12.21.4",
40
- "@quenty/rx": "^13.20.2",
41
- "@quenty/string": "^3.3.3",
42
- "@quenty/table": "^3.8.0"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/brio": "14.20.4-canary.b2b6e1d.0",
30
+ "@quenty/collectionserviceutils": "8.21.4-canary.b2b6e1d.0",
31
+ "@quenty/ducktype": "5.9.0",
32
+ "@quenty/insertserviceutils": "10.12.3-canary.b2b6e1d.0",
33
+ "@quenty/instanceutils": "13.20.5-canary.b2b6e1d.0",
34
+ "@quenty/loader": "10.9.0",
35
+ "@quenty/maid": "3.5.0",
36
+ "@quenty/observablecollection": "12.24.6-canary.b2b6e1d.0",
37
+ "@quenty/promise": "10.12.3-canary.b2b6e1d.0",
38
+ "@quenty/promisemaid": "5.12.3-canary.b2b6e1d.0",
39
+ "@quenty/remoting": "12.21.5-canary.b2b6e1d.0",
40
+ "@quenty/rx": "13.20.3-canary.b2b6e1d.0",
41
+ "@quenty/servicebag": "11.13.4-canary.b2b6e1d.0",
42
+ "@quenty/string": "3.3.3",
43
+ "@quenty/table": "3.8.0"
43
44
  },
44
45
  "publishConfig": {
45
46
  "access": "public"
46
47
  },
47
- "gitHead": "fa1d8d06aa077ddfb6049c8dcb0f20268ac5045d"
48
+ "gitHead": "b2b6e1d9fe6e894de48351ee64859d59d82468fe"
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/CarTemplates.lua
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("CarTemplates"))
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("CarTemplates"))
32
+ local templates = serviceBag:GetService(require("MyCustomTemplateProvider"))
33
33
  serviceBag:Init()
34
34
  serviceBag:Start()
35
35