@quenty/maid 3.6.0-canary.656.d4a6a66.0 → 3.6.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,11 +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
- # [3.6.0-canary.656.d4a6a66.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/maid@3.5.3...@quenty/maid@3.6.0-canary.656.d4a6a66.0) (2026-02-13)
6
+ # [3.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/maid@3.5.3...@quenty/maid@3.6.0) (2026-02-17)
7
7
 
8
8
 
9
9
  ### Features
10
10
 
11
+ * Add CI/CD batch unit testing ([016a366](https://github.com/Quenty/NevermoreEngine/commit/016a3663509c8fffa518b07cfc49ebecba2a1fa6))
11
12
  * Create places automatically using nevermore-cli ([d4a6a66](https://github.com/Quenty/NevermoreEngine/commit/d4a6a66e5720d010b4fc3d6f973ccfdaa17dbead))
12
13
 
13
14
 
@@ -4,7 +4,7 @@
4
4
  "universeId": 9716264427,
5
5
  "placeId": 127036044097157,
6
6
  "project": "test/default.project.json",
7
- "script": "test/scripts/Server/ServerMain.server.lua"
7
+ "scriptTemplate": "test/scripts/Server/ServerMain.server.lua"
8
8
  }
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/maid",
3
- "version": "3.6.0-canary.656.d4a6a66.0",
3
+ "version": "3.6.0",
4
4
  "description": "Easily cleanup event listeners and objects in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,8 +29,12 @@
29
29
  "contributors": [
30
30
  "Quenty"
31
31
  ],
32
+ "dependencies": {
33
+ "@quenty/loader": "10.10.0",
34
+ "@quenty/nevermore-test-runner": "1.1.0"
35
+ },
32
36
  "publishConfig": {
33
37
  "access": "public"
34
38
  },
35
- "gitHead": "d4a6a66e5720d010b4fc3d6f973ccfdaa17dbead"
39
+ "gitHead": "ea9856e1b1ab2c3c1a9c3ed8a07f21a633f59f29"
36
40
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "node_modules",
3
+ "globIgnorePaths": [ "**/.package-lock.json" ],
4
+ "tree": {
5
+ "$path": { "optional": "../node_modules" }
6
+ }
7
+ }
@@ -3,6 +3,9 @@
3
3
  "tree": {
4
4
  "$className": "DataModel",
5
5
  "ServerScriptService": {
6
+ "$properties": {
7
+ "LoadStringEnabled": true
8
+ },
6
9
  "maid": {
7
10
  "$path": ".."
8
11
  },
@@ -11,4 +14,4 @@
11
14
  }
12
15
  }
13
16
  }
14
- }
17
+ }
@@ -1,6 +1,11 @@
1
1
  --!nonstrict
2
- -- Don't want to include loader here, so we do this instead
3
- local Maid = require(game.ServerScriptService.maid.Shared.Maid)
2
+ local ServerScriptService = game:GetService("ServerScriptService")
3
+
4
+ local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
5
+ local require = require(loader).bootstrapGame(ServerScriptService.maid)
6
+
7
+ local Maid = require("Maid")
8
+ local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
4
9
 
5
10
  local maid = Maid.new()
6
11
 
@@ -12,3 +17,5 @@ maid:Add(task.defer(function()
12
17
  error("UPDATE (this should never print)")
13
18
  end
14
19
  end))
20
+
21
+ NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService.maid)