@quenty/localizedtextutils 12.18.0-canary.ae8d76d.0 → 12.18.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,7 +3,7 @@
|
|
|
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
|
-
# [12.18.0
|
|
6
|
+
# [12.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/localizedtextutils@12.17.3...@quenty/localizedtextutils@12.18.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/localizedtextutils
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/localizedtextutils",
|
|
3
|
-
"version": "12.18.0
|
|
3
|
+
"version": "12.18.0",
|
|
4
4
|
"description": "Localized text utils which changes translationKey structures to shared locations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "14.18.0
|
|
32
|
-
"@quenty/loader": "10.
|
|
33
|
-
"@quenty/promisemaid": "5.11.0
|
|
34
|
-
"@quenty/rx": "13.18.0
|
|
31
|
+
"@quenty/attributeutils": "^14.18.0",
|
|
32
|
+
"@quenty/loader": "^10.9.0",
|
|
33
|
+
"@quenty/promisemaid": "^5.11.0",
|
|
34
|
+
"@quenty/rx": "^13.18.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
37
37
|
}
|
|
@@ -7,8 +7,8 @@ local HttpService = game:GetService("HttpService")
|
|
|
7
7
|
|
|
8
8
|
local require = require(script.Parent.loader).load(script)
|
|
9
9
|
|
|
10
|
-
local RxAttributeUtils = require("RxAttributeUtils")
|
|
11
10
|
local Rx = require("Rx")
|
|
11
|
+
local RxAttributeUtils = require("RxAttributeUtils")
|
|
12
12
|
|
|
13
13
|
local LocalizedTextUtils = {}
|
|
14
14
|
|
|
@@ -355,4 +355,4 @@ function LocalizedTextUtils.observeTranslation(translator, obj: Instance, attrib
|
|
|
355
355
|
}) :: any
|
|
356
356
|
end
|
|
357
357
|
|
|
358
|
-
return LocalizedTextUtils
|
|
358
|
+
return LocalizedTextUtils
|