@quenty/attributeutils 3.3.0 → 3.3.2-canary.c50dead.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,28 @@
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.3.2-canary.c50dead.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@3.3.1...@quenty/attributeutils@3.3.2-canary.c50dead.0) (2021-11-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Support MacOS syncing ([c50dead](https://github.com/Quenty/NevermoreEngine/commit/c50deadbe5ebe479aded04e1619441a08ff0e9a8))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@3.3.0...@quenty/attributeutils@3.3.1) (2021-11-10)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Defer signal creation ([8d52470](https://github.com/Quenty/NevermoreEngine/commit/8d52470cbafbd3815bd5e6fe397c7faed2d6f5bc))
23
+
24
+
25
+
26
+
27
+
6
28
  # [3.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/attributeutils@3.2.3...@quenty/attributeutils@3.3.0) (2021-10-30)
7
29
 
8
30
  **Note:** Version bump only for package @quenty/attributeutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/attributeutils",
3
- "version": "3.3.0",
3
+ "version": "3.3.2-canary.c50dead.0",
4
4
  "description": "Provides utility functions to work with attributes in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,12 +25,12 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "^3.1.1",
29
- "@quenty/maid": "^2.0.1",
30
- "@quenty/rx": "^3.2.0"
28
+ "@quenty/loader": "3.1.1",
29
+ "@quenty/maid": "2.0.1",
30
+ "@quenty/rx": "3.2.1-canary.c50dead.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "010eff28095b349f39e02d08844d33f9f733b31f"
35
+ "gitHead": "c50deadbe5ebe479aded04e1619441a08ff0e9a8"
36
36
  }
@@ -17,8 +17,6 @@ function AttributeValue.new(object, attributeName, defaultValue)
17
17
  self._object:SetAttribute(rawget(self, "_attributeName"), defaultValue)
18
18
  end
19
19
 
20
- self.Changed = self._object:GetAttributeChangedSignal(self._attributeName)
21
-
22
20
  return setmetatable(self, AttributeValue)
23
21
  end
24
22
 
@@ -31,6 +29,8 @@ function AttributeValue:__index(index)
31
29
  else
32
30
  return result
33
31
  end
32
+ elseif index == "Changed" then
33
+ return self._object:GetAttributeChangedSignal(self._attributeName)
34
34
  elseif AttributeValue[index] then
35
35
  return AttributeValue[index]
36
36
  else
@@ -2,6 +2,6 @@
2
2
  "name": "node_modules",
3
3
  "globIgnorePaths": [ "**/.package-lock.json" ],
4
4
  "tree": {
5
- "$path": { "optional": "..\\node_modules" }
5
+ "$path": { "optional": "../node_modules" }
6
6
  }
7
7
  }