isaacscript-common 4.3.0 → 4.3.1
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/index.d.ts +1 -0
- package/index.lua +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export * from "./functions/log";
|
|
|
77
77
|
export * from "./functions/map";
|
|
78
78
|
export * from "./functions/math";
|
|
79
79
|
export * from "./functions/mergeTests";
|
|
80
|
+
export * from "./functions/nextStage";
|
|
80
81
|
export * from "./functions/npc";
|
|
81
82
|
export * from "./functions/pickups";
|
|
82
83
|
export * from "./functions/pickupVariants";
|
package/index.lua
CHANGED
|
@@ -612,6 +612,14 @@ do
|
|
|
612
612
|
end
|
|
613
613
|
end
|
|
614
614
|
end
|
|
615
|
+
do
|
|
616
|
+
local ____export = require("functions.nextStage")
|
|
617
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
618
|
+
if ____exportKey ~= "default" then
|
|
619
|
+
____exports[____exportKey] = ____exportValue
|
|
620
|
+
end
|
|
621
|
+
end
|
|
622
|
+
end
|
|
615
623
|
do
|
|
616
624
|
local ____export = require("functions.npc")
|
|
617
625
|
for ____exportKey, ____exportValue in pairs(____export) do
|