@quenty/lipsum 14.34.2 → 14.36.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.
@@ -0,0 +1,10 @@
1
+ {
2
+ "targets": {
3
+ "test": {
4
+ "universeId": 9716264427,
5
+ "placeId": 129333885537375,
6
+ "project": "test/default.project.json",
7
+ "scriptTemplate": "test/scripts/Server/ServerMain.server.lua"
8
+ }
9
+ }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/lipsum",
3
- "version": "14.34.2",
3
+ "version": "14.36.0",
4
4
  "description": "A Lorem Ipsum generator in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,17 +32,17 @@
32
32
  "dependencies": {
33
33
  "@quenty/loader": "10.11.0",
34
34
  "@quenty/nevermore-test-runner": "1.4.0",
35
- "@quenty/randomutils": "6.16.0",
35
+ "@quenty/randomutils": "6.17.0",
36
36
  "@quenty/string": "3.3.6",
37
37
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@quenty/maid": "3.9.0",
41
- "@quenty/textserviceutils": "13.34.2",
42
- "@quenty/uiobjectutils": "6.28.2"
41
+ "@quenty/textserviceutils": "13.36.0",
42
+ "@quenty/uiobjectutils": "6.29.0"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "7672b52f13af6a10df1b189d19d6e2404b5b3e55"
47
+ "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
48
48
  }
@@ -16,6 +16,9 @@
16
16
  },
17
17
  "lipsum": {
18
18
  "$path": ".."
19
+ },
20
+ "Script": {
21
+ "$path": "scripts/Server"
19
22
  }
20
23
  }
21
24
  }
@@ -0,0 +1,13 @@
1
+ --[[
2
+ @class ServerMain
3
+ ]]
4
+ local ServerScriptService = game:GetService("ServerScriptService")
5
+
6
+ local root = ServerScriptService.lipsum
7
+ local loader = root:FindFirstChild("LoaderUtils", true).Parent
8
+ local require = require(loader).bootstrapGame(root)
9
+
10
+ local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
11
+ if NevermoreTestRunnerUtils.runTestsIfNeededAsync(root) then
12
+ return
13
+ end