@quenty/instanceutils 3.5.2 → 3.6.0-canary.241.a4e8214.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,17 @@
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.241.a4e8214.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@3.5.2...@quenty/instanceutils@3.6.0-canary.241.a4e8214.0) (2022-01-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Better error messages on RxInstanceUtils.observeProperty(instance, propertyName) ([00dcde7](https://github.com/Quenty/NevermoreEngine/commit/00dcde7678e6503b91ffeaf6ccaf93896819e7d2))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.5.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/instanceutils@3.5.1...@quenty/instanceutils@3.5.2) (2021-12-30)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/instanceutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/instanceutils",
3
- "version": "3.5.2",
3
+ "version": "3.6.0-canary.241.a4e8214.0",
4
4
  "description": "Utility functions involving instances in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,13 +26,13 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/brio": "^3.5.2",
30
- "@quenty/loader": "^3.1.2",
31
- "@quenty/maid": "^2.0.2",
32
- "@quenty/rx": "^3.5.2"
29
+ "@quenty/brio": "3.6.0-canary.241.a4e8214.0",
30
+ "@quenty/loader": "3.2.0-canary.241.a4e8214.0",
31
+ "@quenty/maid": "2.0.2",
32
+ "@quenty/rx": "3.6.0-canary.241.a4e8214.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "4afdd64f4ff6bc3b4b4c0ca7a31e839196f2411e"
37
+ "gitHead": "a4e821471f35998d63f38a4f4a578e07b4e79035"
38
38
  }
@@ -27,8 +27,8 @@ local RxInstanceUtils = {}
27
27
  @return Observable<T>
28
28
  ]=]
29
29
  function RxInstanceUtils.observeProperty(instance, propertyName)
30
- assert(typeof(instance) == "Instance", "Not an instance")
31
- assert(type(propertyName) == "string", "Bad propertyName")
30
+ assert(typeof(instance) == "Instance", "'instance' should be of type Instance")
31
+ assert(type(propertyName) == "string", "'propertyName' should be of type string")
32
32
 
33
33
  return Observable.new(function(sub)
34
34
  local maid = Maid.new()