isaacscript-common 72.3.1 → 72.3.2
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 72.3.
|
|
3
|
+
isaacscript-common 72.3.2
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -57551,8 +57551,7 @@ local ____exports = {}
|
|
|
57551
57551
|
local getItemPoolJSON
|
|
57552
57552
|
local ____cachedEnumValues = require("src.arrays.cachedEnumValues")
|
|
57553
57553
|
local ITEM_POOL_TYPE_VALUES = ____cachedEnumValues.ITEM_POOL_TYPE_VALUES
|
|
57554
|
-
local
|
|
57555
|
-
local itemPoolsJSON = ____itempools_2Ejson.default
|
|
57554
|
+
local itemPoolsJSON = require("src.data.itempools")
|
|
57556
57555
|
local ____types = require("src.functions.types")
|
|
57557
57556
|
local asCollectibleType = ____types.asCollectibleType
|
|
57558
57557
|
local ____itemPoolTypeToItemPoolName = require("src.maps.itemPoolTypeToItemPoolName")
|
|
@@ -6,8 +6,7 @@ local ____exports = {}
|
|
|
6
6
|
local getItemPoolJSON
|
|
7
7
|
local ____cachedEnumValues = require("src.arrays.cachedEnumValues")
|
|
8
8
|
local ITEM_POOL_TYPE_VALUES = ____cachedEnumValues.ITEM_POOL_TYPE_VALUES
|
|
9
|
-
local
|
|
10
|
-
local itemPoolsJSON = ____itempools_2Ejson.default
|
|
9
|
+
local itemPoolsJSON = require("src.data.itempools")
|
|
11
10
|
local ____types = require("src.functions.types")
|
|
12
11
|
local asCollectibleType = ____types.asCollectibleType
|
|
13
12
|
local ____itemPoolTypeToItemPoolName = require("src.maps.itemPoolTypeToItemPoolName")
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import type {
|
|
|
3
3
|
ItemPoolType,
|
|
4
4
|
} from "isaac-typescript-definitions";
|
|
5
5
|
import { ITEM_POOL_TYPE_VALUES } from "../arrays/cachedEnumValues";
|
|
6
|
-
import itemPoolsJSON from "../data/itempools.json";
|
|
6
|
+
import * as itemPoolsJSON from "../data/itempools.json";
|
|
7
7
|
import { asCollectibleType } from "../functions/types";
|
|
8
8
|
import { ITEM_POOL_TYPE_TO_ITEM_POOL_NAME } from "../maps/itemPoolTypeToItemPoolName";
|
|
9
9
|
|