https://github.com/pixelguys/cubyz-dev-kit-vscode
Collection of tools helpful for Cubyz mod and asset development
https://github.com/pixelguys/cubyz-dev-kit-vscode
Last synced: 10 months ago
JSON representation
Collection of tools helpful for Cubyz mod and asset development
- Host: GitHub
- URL: https://github.com/pixelguys/cubyz-dev-kit-vscode
- Owner: PixelGuys
- License: gpl-3.0
- Created: 2025-06-01T09:07:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-13T22:35:19.000Z (about 1 year ago)
- Last Synced: 2025-06-27T23:35:18.945Z (12 months ago)
- Language: TypeScript
- Homepage:
- Size: 233 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cubyz Dev Kit
Collection of tools helpful for Cubyz asset development.
## Features
- File aware and file context aware completions for IDs.
- Commands:
- `Cubyz Dev Kit: Build Debug`
- `Cubyz Dev Kit: Build Release Safe`
- `Cubyz Dev Kit: Clear Build Cache`
- `Cubyz Dev Kit: Clear Compiler and Cache`
- `Cubyz Dev Kit: Format All Documents`
## Development
Development requires:
- Visual Studio Code >=1.90
- Node.js >=20.17.0
- vsce >= 3.4.2 (for packaging)
Start with opening the project in Visual Studio Code. After that, install the dependencies with:
```bash
npm install
```
Then, you can run the extension in development mode by pressing `F5`.
To deploy package, in root of the repository run:
```bash
vsce package
```
This will create a `.vsix` file in the root directory, which has to be manually uploaded to
appropriate marketplaces.
- Microsoft marketplace [direct link](https://marketplace.visualstudio.com/manage/publishers/PixelGuys).
- Open VSX [direct link](https://open-vsx.org/user-settings/namespaces).
May the code be with you!