@evitcastudio/kit 2.1.0 → 2.1.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/README.md +0 -1
- package/lib/bundle/cli/cli.js +5 -4
- package/lib/types/vylo.d.ts +3849 -0
- package/package.json +3 -2
- package/lib/event-system.d.ts +0 -13
- package/lib/event-system.d.ts.map +0 -1
- package/lib/event-system.js +0 -25
package/README.md
CHANGED
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 Fri, 10 Jan 2025
|
|
4
|
+
* @evitcastudio/kit@2.1.1 git+https://github.com/EvitcaStudio/Kit.git
|
|
5
|
+
* Compiled Fri, 10 Jan 2025 17:23:34 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.1",
|
|
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",
|
|
@@ -2602,7 +2602,7 @@ var package_default = {
|
|
|
2602
2602
|
test: "bun test ./tests",
|
|
2603
2603
|
lint: "bun eslint ./src",
|
|
2604
2604
|
pack: "bun pm pack --dry-run",
|
|
2605
|
-
"build-types": "bun tsc",
|
|
2605
|
+
"build-types": "bun tsc && shx cp ./src/types/vylo.d.ts ./lib/types/vylo.d.ts",
|
|
2606
2606
|
build: "bun bun-build.ts",
|
|
2607
2607
|
"build-docs": "bun typedoc",
|
|
2608
2608
|
"build-all": "bun run build-types && bun run build && bun run build-docs"
|
|
@@ -2618,6 +2618,7 @@ var package_default = {
|
|
|
2618
2618
|
bun: "^1.1.42",
|
|
2619
2619
|
eslint: "^9.17.0",
|
|
2620
2620
|
globals: "^15.14.0",
|
|
2621
|
+
shx: "^0.3.4",
|
|
2621
2622
|
typedoc: "^0.27.5",
|
|
2622
2623
|
typescript: "^5.7.2",
|
|
2623
2624
|
"typescript-eslint": "^8.19.0"
|