@quenty/templateprovider 11.4.1-canary.497.496fc5b.0 → 11.4.1-canary.500.0c613a3.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,9 +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.4.1-canary.
|
|
6
|
+
## [11.4.1-canary.500.0c613a3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/templateprovider@11.4.0...@quenty/templateprovider@11.4.1-canary.500.0c613a3.0) (2024-09-25)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Rename stragglers ([25c8512](https://github.com/Quenty/NevermoreEngine/commit/25c85124769eb0c92ad4d4c51bc950d9c319c994))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/templateprovider",
|
|
3
|
-
"version": "11.4.1-canary.
|
|
3
|
+
"version": "11.4.1-canary.500.0c613a3.0",
|
|
4
4
|
"description": "Base of a template retrieval system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.4.1-canary.
|
|
29
|
-
"@quenty/insertserviceutils": "10.4.1-canary.
|
|
30
|
-
"@quenty/loader": "10.4.1-canary.
|
|
28
|
+
"@quenty/baseobject": "10.4.1-canary.500.0c613a3.0",
|
|
29
|
+
"@quenty/insertserviceutils": "10.4.1-canary.500.0c613a3.0",
|
|
30
|
+
"@quenty/loader": "10.4.1-canary.500.0c613a3.0",
|
|
31
31
|
"@quenty/maid": "3.3.0",
|
|
32
|
-
"@quenty/promise": "10.4.1-canary.
|
|
33
|
-
"@quenty/string": "3.2.0"
|
|
32
|
+
"@quenty/promise": "10.4.1-canary.500.0c613a3.0",
|
|
33
|
+
"@quenty/string": "3.2.1-canary.500.0c613a3.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0c613a3ae0b6ba6a4cda511f572220bfa951c70d"
|
|
39
39
|
}
|
|
@@ -30,8 +30,7 @@ function TemplateContainerUtils.reparentFromWorkspaceIfNeeded(parent, name)
|
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
if not parentedContainer then
|
|
33
|
-
error(("No template container with name %q in %q")
|
|
34
|
-
:format(parent:GetFullName(), name))
|
|
33
|
+
error(string.format("No template container with name %q in %q", parent:GetFullName(), name))
|
|
35
34
|
end
|
|
36
35
|
|
|
37
36
|
return parentedContainer
|
|
@@ -141,8 +141,7 @@ function TemplateProvider:PromiseClone(templateName)
|
|
|
141
141
|
|
|
142
142
|
task.delay(5, function()
|
|
143
143
|
if promise:IsPending() then
|
|
144
|
-
warn(("[TemplateProvider.PromiseClone] - May fail to replicate template %q from cloud. %s")
|
|
145
|
-
:format(templateName, self:_getReplicationHint()))
|
|
144
|
+
warn(string.format("[TemplateProvider.PromiseClone] - May fail to replicate template %q from cloud. %s", templateName, self:_getReplicationHint()))
|
|
146
145
|
end
|
|
147
146
|
end)
|
|
148
147
|
end
|