@quenty/loader 3.3.1-canary.4c04014.0 → 4.0.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 +12 -1
- package/package.json +2 -2
- package/src/ScriptInfoUtils.lua +1 -1
- package/src/StaticLegacyLoader.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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
|
-
|
|
6
|
+
# [4.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@3.4.0...@quenty/loader@4.0.0) (2022-03-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Duplicate module info actually errors properly ([d3d451f](https://github.com/Quenty/NevermoreEngine/commit/d3d451f24ecc3f6debeb802bd4de6b7276369403))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@3.3.0...@quenty/loader@3.4.0) (2022-01-17)
|
|
7
18
|
|
|
8
19
|
|
|
9
20
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/loader",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.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": "
|
|
29
|
+
"gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
|
|
30
30
|
}
|
package/src/ScriptInfoUtils.lua
CHANGED
|
@@ -125,7 +125,7 @@ function ScriptInfoUtils.addToInfoMapForMode(replicationMap, scriptInfo)
|
|
|
125
125
|
warn(("Duplicate module %q in same package under same replication scope. Only using first one. \n- %q\n- %q")
|
|
126
126
|
:format(scriptInfo.name,
|
|
127
127
|
scriptInfo.instance:GetFullName(),
|
|
128
|
-
replicationMap[scriptInfo.name]:GetFullName()))
|
|
128
|
+
replicationMap[scriptInfo.name].instance:GetFullName()))
|
|
129
129
|
return
|
|
130
130
|
end
|
|
131
131
|
|