@evitcastudio/kit 2.0.0 → 2.0.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 +6 -9
- package/lib/bundle/cli/cli.js +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
# Kit
|
|
2
2
|
|
|
3
|
-
**Kit** is a lightweight, extensible 2D framework for game development in
|
|
4
|
-
|
|
5
|
-
**Lightweight and modular**: Core functionality is minimal; plugins add power.
|
|
6
|
-
**Plugin support**: Easily extend Kit with official or third-party plugins.
|
|
7
|
-
**Event system**: Decouple functionality with a robust event-driven API.
|
|
8
|
-
**TypeScript-first**: Full TypeScript support for strong typing and modern workflows.
|
|
3
|
+
**Kit** is a lightweight, extensible 2D framework for game development in the [Vylocity Game Engine](https://www.vylocity.com/). Designed to be simple and modular, Kit lets you build powerful projects through a plugin-driven architecture.
|
|
9
4
|
|
|
10
5
|
# Install
|
|
11
6
|
```bash
|
|
@@ -28,10 +23,10 @@ It is recommended to exclude this file from your version control system, as it i
|
|
|
28
23
|
|
|
29
24
|
|
|
30
25
|
> [!IMPORTANT]
|
|
31
|
-
|
|
26
|
+
This API should be ran BEFORE `VYLO.load()` is called.
|
|
32
27
|
|
|
33
28
|
> [!WARNING]
|
|
34
|
-
|
|
29
|
+
Depending on your environment the following [import syntax](https://github.com/EvitcaStudio/Kit/wiki/FAQ#importing-json-resources) for json may not work.
|
|
35
30
|
|
|
36
31
|
|
|
37
32
|
```js
|
|
@@ -64,4 +59,6 @@ Kit.on('Plugin', 'eventName', listener);
|
|
|
64
59
|
|
|
65
60
|
// You can also stop listening for an event
|
|
66
61
|
Kit.off('Plugin', 'eventName', listener);
|
|
67
|
-
```
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
For more information check out the [wiki](https://github.com/EvitcaStudio/Kit/wiki)
|
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.0.
|
|
5
|
-
* Compiled
|
|
4
|
+
* @evitcastudio/kit@2.0.1 git+https://github.com/EvitcaStudio/Kit.git
|
|
5
|
+
* Compiled Fri, 10 Jan 2025 09:36:26 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.0.
|
|
2576
|
+
version: "2.0.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",
|
|
@@ -2604,7 +2604,7 @@ var package_default = {
|
|
|
2604
2604
|
pack: "bun pm pack --dry-run",
|
|
2605
2605
|
"build-types": "bun tsc",
|
|
2606
2606
|
build: "bun bun-build.ts",
|
|
2607
|
-
"build-docs": "bun typedoc
|
|
2607
|
+
"build-docs": "bun typedoc",
|
|
2608
2608
|
"build-all": "bun run build-types && bun run build && bun run build-docs"
|
|
2609
2609
|
},
|
|
2610
2610
|
bin: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evitcastudio/kit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"author": "doubleactii 56242467+doubleactii@users.noreply.github.com (https://evitcastudio.com)",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"pack": "bun pm pack --dry-run",
|
|
32
32
|
"build-types": "bun tsc",
|
|
33
33
|
"build": "bun bun-build.ts",
|
|
34
|
-
"build-docs": "bun typedoc
|
|
34
|
+
"build-docs": "bun typedoc",
|
|
35
35
|
"build-all": "bun run build-types && bun run build && bun run build-docs"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|