@quenty/templateprovider 11.9.0 → 11.9.1
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 +11 -0
- package/package.json +2 -2
- package/src/Shared/TemplateProvider.lua +1 -0
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.9.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.9.0...@quenty/templateprovider@11.9.1) (2024-11-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix aliases ([70af87e](https://github.com/Quenty/NevermoreEngine/commit/70af87e8308937c4df220c871925838783da8b61))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [11.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.8.0...@quenty/templateprovider@11.9.0) (2024-11-03)
|
|
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.9.
|
|
3
|
+
"version": "11.9.1",
|
|
4
4
|
"description": "Base of a template retrieval system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b10790e93b6c4bca4a0271c3d18e125bbff29736"
|
|
46
46
|
}
|
|
@@ -602,6 +602,7 @@ TemplateProvider.Get = assert(TemplateProvider.GetTemplate, "Missing method")
|
|
|
602
602
|
TemplateProvider.Clone = assert(TemplateProvider.CloneTemplate, "Missing method")
|
|
603
603
|
TemplateProvider.PromiseClone = assert(TemplateProvider.PromiseCloneTemplate, "Missing method")
|
|
604
604
|
TemplateProvider.GetAllTemplates = assert(TemplateProvider.GetTemplateList, "Missing method")
|
|
605
|
+
TemplateProvider.GetAll = assert(TemplateProvider.GetTemplateList, "Missing method")
|
|
605
606
|
|
|
606
607
|
function TemplateProvider:_cloneTemplate(template)
|
|
607
608
|
local newItem = template:Clone()
|