@evitcastudio/kit 2.1.1 → 2.1.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.
- package/lib/bundle/cli/cli.js +3 -3
- package/lib/types/vylo.d.ts +2 -2
- package/package.json +1 -1
package/lib/bundle/cli/cli.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/*!
|
|
4
|
-
* @evitcastudio/kit@2.1.
|
|
5
|
-
* Compiled
|
|
4
|
+
* @evitcastudio/kit@2.1.2 git+https://github.com/EvitcaStudio/Kit.git
|
|
5
|
+
* Compiled Wed, 15 Jan 2025 17:54:00 UTC
|
|
6
6
|
* Copyright (c) 2025 Jared Bates, Evitca Studio, "doubleactii"
|
|
7
7
|
*
|
|
8
8
|
* @evitcastudio/kit is licensed under the MIT License.
|
|
@@ -2573,7 +2573,7 @@ class KitCLI {
|
|
|
2573
2573
|
// package.json
|
|
2574
2574
|
var package_default = {
|
|
2575
2575
|
name: "@evitcastudio/kit",
|
|
2576
|
-
version: "2.1.
|
|
2576
|
+
version: "2.1.2",
|
|
2577
2577
|
author: "doubleactii 56242467+doubleactii@users.noreply.github.com (https://evitcastudio.com)",
|
|
2578
2578
|
main: "./lib/index.js",
|
|
2579
2579
|
types: "./lib/index.d.ts",
|
package/lib/types/vylo.d.ts
CHANGED
|
@@ -1206,7 +1206,7 @@
|
|
|
1206
1206
|
* name of the map
|
|
1207
1207
|
* @env Client | Server
|
|
1208
1208
|
*/
|
|
1209
|
-
mapName:
|
|
1209
|
+
mapName: string
|
|
1210
1210
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* sets the x and y icon offsets
|
|
@@ -1274,7 +1274,7 @@
|
|
|
1274
1274
|
* order of display of the diob; higher layer objects appear above lower layer objects
|
|
1275
1275
|
* @env Client | Server
|
|
1276
1276
|
*/
|
|
1277
|
-
layer:
|
|
1277
|
+
layer: number
|
|
1278
1278
|
|
|
1279
1279
|
/**
|
|
1280
1280
|
* returns an array of diobs that are overlays of this diob using the provided arguments; if pType is not set, all diobs will be returned; if pType is set but pChild is not, all diobs with the exact type of pType will be returned; if pType is set and pChild is set, all diobs with the type pType or a parent type of pType will be returned; for example, if pType is set to 'Mob' with pChild undefined, all diobs with the exact type of 'Mob' will be returned, but if pChild is set, then all mobs will be returned
|