@quenty/loader 3.1.2 → 3.1.3-canary.241.8dba9c1.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.1.3-canary.241.8dba9c1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@3.1.2...@quenty/loader@3.1.3-canary.241.8dba9c1.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.1.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@3.1.1...@quenty/loader@3.1.2) (2021-12-30)
7
18
 
8
19
  **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": "3.1.2",
3
+ "version": "3.1.3-canary.241.8dba9c1.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": "d146c77d0a8e452824de0ab0b4b03ba0370bcc1b"
29
+ "gitHead": "8dba9c1e474a8f8c5de373dc04e3c876e21b034b"
30
30
  }
@@ -185,7 +185,7 @@ function PackageInfoUtils.tryLoadPackageFromInstance(packageInfoList, packageInf
185
185
  if value and (value:IsA("Folder") or value:IsA("ModuleScript")) then
186
186
  table.insert(packageInfoList, PackageInfoUtils.getOrCreatePackageInfo(value, packageInfoMap, scope))
187
187
  else
188
- warn(("Invalid %q ObjectValue in package linking to nothing cannot be resolved into package dependency\n\t-> %s")
188
+ error(("Invalid %q ObjectValue in package linking to nothing cannot be resolved into package dependency\n\t-> %s")
189
189
  :format(instance.Name, instance:GetFullName()))
190
190
  end
191
191
  end