@quenty/lipsum 14.18.4-canary.559.9f38947.0 → 14.19.0-canary.559.b31717d.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
|
-
|
|
6
|
+
# [14.19.0-canary.559.b31717d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/lipsum@14.18.3...@quenty/lipsum@14.19.0-canary.559.b31717d.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/lipsum
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/lipsum",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.19.0-canary.559.b31717d.0",
|
|
4
4
|
"description": "A Lorem Ipsum generator in Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"Quenty"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/loader": "10.8.
|
|
31
|
-
"@quenty/randomutils": "6.10.
|
|
30
|
+
"@quenty/loader": "10.8.3",
|
|
31
|
+
"@quenty/randomutils": "6.10.3",
|
|
32
32
|
"@quenty/string": "3.3.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@quenty/maid": "3.4.
|
|
36
|
-
"@quenty/textserviceutils": "13.
|
|
37
|
-
"@quenty/uiobjectutils": "6.
|
|
35
|
+
"@quenty/maid": "3.4.3",
|
|
36
|
+
"@quenty/textserviceutils": "13.19.0-canary.559.b31717d.0",
|
|
37
|
+
"@quenty/uiobjectutils": "6.17.0-canary.559.b31717d.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "b31717d8c9f7620c457f5018a2affa760a65334a"
|
|
43
43
|
}
|
|
@@ -193,7 +193,7 @@ function LipsumUtils.document(numParagraphs: number?, createParagraph: GenerateC
|
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
local output = ""
|
|
196
|
-
for p
|
|
196
|
+
for p=1, paragraphCount do
|
|
197
197
|
output ..= generateParagraph()
|
|
198
198
|
if p ~= paragraphCount then
|
|
199
199
|
output ..= "\n\n"
|
|
@@ -203,4 +203,4 @@ function LipsumUtils.document(numParagraphs: number?, createParagraph: GenerateC
|
|
|
203
203
|
return output
|
|
204
204
|
end
|
|
205
205
|
|
|
206
|
-
return LipsumUtils
|
|
206
|
+
return LipsumUtils
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
local require =
|
|
2
|
-
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
1
|
+
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
3
2
|
|
|
4
3
|
local Jest = require("Jest")
|
|
5
4
|
local LipsumUtils = require("LipsumUtils")
|
|
@@ -27,4 +26,4 @@ it("returns a fixed number of words in a sentence", function()
|
|
|
27
26
|
local words = string.split(randomSentence, " ")
|
|
28
27
|
|
|
29
28
|
expect(words).toHaveLength(10)
|
|
30
|
-
end)
|
|
29
|
+
end)
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
@class LipsumUtils.story
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require =
|
|
6
|
-
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
5
|
+
local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
7
6
|
|
|
8
7
|
local RunService = game:GetService("RunService")
|
|
9
8
|
|
|
@@ -169,4 +168,4 @@ return function(target)
|
|
|
169
168
|
return function()
|
|
170
169
|
maid:DoCleaning()
|
|
171
170
|
end
|
|
172
|
-
end
|
|
171
|
+
end
|