@quenty/binder 8.18.1 → 8.19.1

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,22 @@
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
+ ## [8.19.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@8.19.0...@quenty/binder@8.19.1) (2023-06-24)
7
+
8
+ **Note:** Version bump only for package @quenty/binder
9
+
10
+
11
+
12
+
13
+
14
+ # [8.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@8.18.1...@quenty/binder@8.19.0) (2023-06-24)
15
+
16
+ **Note:** Version bump only for package @quenty/binder
17
+
18
+
19
+
20
+
21
+
6
22
  ## [8.18.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@8.18.0...@quenty/binder@8.18.1) (2023-06-23)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "8.18.1",
3
+ "version": "8.19.1",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "266132ea91226f356a7e19574593a8db18046cab"
42
+ "gitHead": "a11eeb97c47e5c148dc78fa7e4d72424162ba3fd"
43
43
  }
@@ -165,11 +165,11 @@ function Binder:Start()
165
165
  self:Init()
166
166
  end
167
167
 
168
- if self._loaded then
168
+ if self._started then
169
169
  return
170
170
  end
171
171
  self._maid._warning = nil
172
- self._loaded = true
172
+ self._started = true
173
173
 
174
174
  for _, inst in pairs(CollectionService:GetTagged(self._tagName)) do
175
175
  task.spawn(self._add, self, inst)
@@ -255,10 +255,10 @@ end
255
255
  --[=[
256
256
  Fired when added, and then after removal, but before destroy!
257
257
 
258
- ```info
258
+ :::info
259
259
  This is before [Rx] so it doesn't follow the same Rx pattern. See [Binder.Observe] for
260
260
  an [Rx] compatible interface.
261
- ```
261
+ :::
262
262
 
263
263
  @param inst Instance
264
264
  @param callback function