isaacscript-common 1.2.218 → 1.2.221
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/dist/callbacks/customRevive.lua +3 -2
- package/dist/enums/private/SerializableIsaacAPIClassType.d.ts +7 -0
- package/dist/enums/private/SerializableIsaacAPIClassType.lua +8 -0
- package/dist/enums/private/SerializationBrand.d.ts +1 -0
- package/dist/enums/private/SerializationBrand.lua +1 -0
- package/dist/features/extraConsoleCommands/commands.lua +3 -2
- package/dist/features/saveDataManager/merge.d.ts +1 -0
- package/dist/features/saveDataManager/merge.lua +7 -19
- package/dist/functions/collectibles.d.ts +6 -2
- package/dist/functions/collectibles.lua +41 -2
- package/dist/functions/color.d.ts +9 -3
- package/dist/functions/color.lua +26 -15
- package/dist/functions/deepCopy.d.ts +1 -0
- package/dist/functions/deepCopy.lua +35 -34
- package/dist/functions/isaacAPIClass.d.ts +25 -0
- package/dist/functions/isaacAPIClass.lua +52 -0
- package/dist/functions/kColor.d.ts +30 -0
- package/dist/functions/kColor.lua +90 -0
- package/dist/functions/log.lua +9 -7
- package/dist/functions/player.lua +7 -8
- package/dist/functions/playerHealth.lua +3 -4
- package/dist/functions/pocketItems.lua +3 -2
- package/dist/functions/rng.d.ts +6 -3
- package/dist/functions/rng.lua +7 -3
- package/dist/functions/serialization.d.ts +5 -0
- package/dist/functions/serialization.lua +115 -0
- package/dist/functions/sprite.d.ts +10 -0
- package/dist/functions/sprite.lua +32 -0
- package/dist/functions/table.d.ts +4 -4
- package/dist/functions/trinkets.lua +2 -2
- package/dist/functions/vector.d.ts +6 -3
- package/dist/functions/vector.lua +7 -3
- package/dist/index.d.ts +3 -1
- package/dist/index.lua +24 -8
- package/dist/types/private/IsaacAPIClass.d.ts +4 -0
- package/dist/types/private/IsaacAPIClass.lua +3 -0
- package/dist/types/private/SerializableIsaacAPIClass.d.ts +4 -0
- package/dist/types/private/SerializableIsaacAPIClass.lua +3 -0
- package/dist/types/private/SerializedIsaacAPIClass.d.ts +4 -0
- package/dist/types/private/SerializedIsaacAPIClass.lua +3 -0
- package/package.json +2 -2
package/dist/index.lua
CHANGED
|
@@ -411,6 +411,14 @@ do
|
|
|
411
411
|
end
|
|
412
412
|
end
|
|
413
413
|
end
|
|
414
|
+
do
|
|
415
|
+
local ____export = require("functions.isaacAPIClass")
|
|
416
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
417
|
+
if ____exportKey ~= "default" then
|
|
418
|
+
____exports[____exportKey] = ____exportValue
|
|
419
|
+
end
|
|
420
|
+
end
|
|
421
|
+
end
|
|
414
422
|
do
|
|
415
423
|
local ____export = require("functions.jsonHelpers")
|
|
416
424
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -427,6 +435,14 @@ do
|
|
|
427
435
|
end
|
|
428
436
|
end
|
|
429
437
|
end
|
|
438
|
+
do
|
|
439
|
+
local ____export = require("functions.kColor")
|
|
440
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
441
|
+
if ____exportKey ~= "default" then
|
|
442
|
+
____exports[____exportKey] = ____exportValue
|
|
443
|
+
end
|
|
444
|
+
end
|
|
445
|
+
end
|
|
430
446
|
do
|
|
431
447
|
local ____export = require("functions.language")
|
|
432
448
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -592,6 +608,14 @@ do
|
|
|
592
608
|
end
|
|
593
609
|
end
|
|
594
610
|
end
|
|
611
|
+
do
|
|
612
|
+
local ____export = require("functions.serialization")
|
|
613
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
614
|
+
if ____exportKey ~= "default" then
|
|
615
|
+
____exports[____exportKey] = ____exportValue
|
|
616
|
+
end
|
|
617
|
+
end
|
|
618
|
+
end
|
|
595
619
|
do
|
|
596
620
|
local ____export = require("functions.set")
|
|
597
621
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -704,14 +728,6 @@ do
|
|
|
704
728
|
end
|
|
705
729
|
end
|
|
706
730
|
end
|
|
707
|
-
do
|
|
708
|
-
local ____export = require("functions.userdata")
|
|
709
|
-
for ____exportKey, ____exportValue in pairs(____export) do
|
|
710
|
-
if ____exportKey ~= "default" then
|
|
711
|
-
____exports[____exportKey] = ____exportValue
|
|
712
|
-
end
|
|
713
|
-
end
|
|
714
|
-
end
|
|
715
731
|
do
|
|
716
732
|
local ____export = require("functions.utils")
|
|
717
733
|
for ____exportKey, ____exportValue in pairs(____export) do
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.221",
|
|
4
4
|
"description": "Helper functions for IsaacScript mods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist/**/*.d.ts"
|
|
26
26
|
],
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"isaac-typescript-definitions": "^1.0.
|
|
28
|
+
"isaac-typescript-definitions": "^1.0.380",
|
|
29
29
|
"isaacscript-lint": "^1.0.95",
|
|
30
30
|
"isaacscript-tsconfig": "^1.1.8",
|
|
31
31
|
"typedoc": "^0.22.13",
|