@quenty/loader 10.1.0 → 10.1.1-canary.461.ef0ff45.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,6 +3,14 @@
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
+ ## [10.1.1-canary.461.ef0ff45.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@10.1.0...@quenty/loader@10.1.1-canary.461.ef0ff45.0) (2024-04-27)
7
+
8
+ **Note:** Version bump only for package @quenty/loader
9
+
10
+
11
+
12
+
13
+
6
14
  # [10.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@10.0.0...@quenty/loader@10.1.0) (2024-03-09)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/loader
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/loader",
3
- "version": "10.1.0",
3
+ "version": "10.1.1-canary.461.ef0ff45.0",
4
4
  "description": "A simple module loader for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "e0148dde5ca3864389a0faa2da66153a776acc1e"
29
+ "gitHead": "ef0ff45686a7f2f93156fc1bd2b459e55076b07e"
30
30
  }
package/src/Maid.lua CHANGED
@@ -1,4 +1,4 @@
1
- --[=[
1
+ --[[
2
2
  Manages the cleaning of events and other things. Useful for
3
3
  encapsulating state and make deconstructors easy.
4
4
 
@@ -19,7 +19,7 @@
19
19
  ```
20
20
 
21
21
  @class Maid
22
- ]=]
22
+ ]]
23
23
  -- luacheck: pop
24
24
 
25
25
  local Maid = {}
@@ -54,12 +54,15 @@ function Replicator.new(references)
54
54
  self._target.Value = nil
55
55
 
56
56
  self._replicatedDescendantCount = self._maid:Add(Instance.new("IntValue"))
57
+ self._replicatedDescendantCount.Name = "Replicator_ReplicatedDescendantCount"
57
58
  self._replicatedDescendantCount.Value = 0
58
59
 
59
60
  self._hasReplicatedDescendants = self._maid:Add(Instance.new("BoolValue"))
61
+ self._hasReplicatedDescendants.Name = "Replicator_HasReplicatedDescendants"
60
62
  self._hasReplicatedDescendants.Value = false
61
63
 
62
64
  self._replicationType = self._maid:Add(Instance.new("StringValue"))
65
+ self._replicationType.Name = "Replicator_ReplicationType"
63
66
  self._replicationType.Value = ReplicationType.SHARED
64
67
 
65
68
  self._maid:GiveTask(self._replicatedDescendantCount.Changed:Connect(function()