@quenty/linkutils 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/linkutils@3.5.2...@quenty/linkutils@3.6.0-canary.241.a4e8214.0) (2022-01-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Better error messages ([4a49909](https://github.com/Quenty/NevermoreEngine/commit/4a49909e607ca21d751da510f57ee0629808f11d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.5.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/linkutils@3.5.1...@quenty/linkutils@3.5.2) (2021-12-30)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/linkutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/linkutils",
3
- "version": "3.5.2",
3
+ "version": "3.6.0-canary.241.a4e8214.0",
4
4
  "description": "Utility functions for links. Links are object values pointing to other values!",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^3.5.2",
29
- "@quenty/instanceutils": "^3.5.2",
30
- "@quenty/loader": "^3.1.2",
31
- "@quenty/maid": "^2.0.2",
32
- "@quenty/promise": "^3.3.1",
33
- "@quenty/rx": "^3.5.2"
28
+ "@quenty/brio": "3.6.0-canary.241.a4e8214.0",
29
+ "@quenty/instanceutils": "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/promise": "3.4.0-canary.241.a4e8214.0",
33
+ "@quenty/rx": "3.6.0-canary.241.a4e8214.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "4afdd64f4ff6bc3b4b4c0ca7a31e839196f2411e"
38
+ "gitHead": "a4e821471f35998d63f38a4f4a578e07b4e79035"
39
39
  }
@@ -15,8 +15,8 @@ local RxLinkUtils = {}
15
15
 
16
16
  -- Emits valid links in format Brio.new(link, linkValue)
17
17
  function RxLinkUtils.observeValidLinksBrio(linkName, parent)
18
- assert(type(linkName) == "string", "Bad linkName")
19
- assert(typeof(parent) == "Instance", "Bad parent")
18
+ assert(type(linkName) == "string", "linkName should be 'string'")
19
+ assert(typeof(parent) == "Instance", "parent should be 'Instance'")
20
20
 
21
21
  return RxInstanceUtils.observeChildrenBrio(parent)
22
22
  :Pipe({