@quenty/templateprovider 11.23.4-canary.e4c3d05.0 → 11.23.4-canary.f294cf2.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,11 +3,12 @@
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.4-canary.e4c3d05.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.23.3...@quenty/templateprovider@11.23.4-canary.e4c3d05.0) (2025-12-29)
6
+ ## [11.23.4-canary.f294cf2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.23.3...@quenty/templateprovider@11.23.4-canary.f294cf2.0) (2025-12-30)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
+ * Fix dependencies missing in packages ([f294cf2](https://github.com/Quenty/NevermoreEngine/commit/f294cf2eec1dd0e95b09d4126287b812b77e1e72))
11
12
  * Update typing to be more accurate ([e4c3d05](https://github.com/Quenty/NevermoreEngine/commit/e4c3d05a0aa9f45a37cbfa372c5e0d8a748c9323))
12
13
 
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/templateprovider",
3
- "version": "11.23.4-canary.e4c3d05.0",
3
+ "version": "11.23.4-canary.f294cf2.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.2-canary.e4c3d05.0",
30
- "@quenty/collectionserviceutils": "8.21.2-canary.e4c3d05.0",
29
+ "@quenty/brio": "14.20.2-canary.f294cf2.0",
30
+ "@quenty/collectionserviceutils": "8.21.2-canary.f294cf2.0",
31
31
  "@quenty/ducktype": "5.9.0",
32
- "@quenty/insertserviceutils": "10.12.1-canary.e4c3d05.0",
33
- "@quenty/instanceutils": "13.20.3-canary.e4c3d05.0",
32
+ "@quenty/insertserviceutils": "10.12.1-canary.f294cf2.0",
33
+ "@quenty/instanceutils": "13.20.3-canary.f294cf2.0",
34
34
  "@quenty/loader": "10.9.0",
35
35
  "@quenty/maid": "3.5.0",
36
- "@quenty/observablecollection": "12.24.4-canary.e4c3d05.0",
37
- "@quenty/promise": "10.12.1-canary.e4c3d05.0",
38
- "@quenty/promisemaid": "5.12.1-canary.e4c3d05.0",
39
- "@quenty/remoting": "12.21.3-canary.e4c3d05.0",
40
- "@quenty/rx": "13.20.1-canary.e4c3d05.0",
36
+ "@quenty/observablecollection": "12.24.4-canary.f294cf2.0",
37
+ "@quenty/promise": "10.12.1-canary.f294cf2.0",
38
+ "@quenty/promisemaid": "5.12.1-canary.f294cf2.0",
39
+ "@quenty/remoting": "12.21.3-canary.f294cf2.0",
40
+ "@quenty/rx": "13.20.1-canary.f294cf2.0",
41
+ "@quenty/servicebag": "11.13.3-canary.f294cf2.0",
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": "e4c3d05a0aa9f45a37cbfa372c5e0d8a748c9323"
48
+ "gitHead": "f294cf2eec1dd0e95b09d4126287b812b77e1e72"
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