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