Files
Nebula/neb/README.md

39 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

# Nebula Package Manager
Nebula is the CLI package manager for the Comet Programming Language.
The source code for Comet can be found here: https://chookspace.com/Comet/Comet
Or for Nebula: https://chookspace.com/Comet/Nebula
There is also Github mirror of Comet if you would prefer that: https://github.com/SpookyDervish/Comet
## Usage
### Installing a Package
2026-07-04 20:04:09 +10:00
To install a rock type:
```
neb install packageName
```
Or if you wish to install a particular version:
```
neb install packageName@1.0.0
```
2026-07-04 20:04:09 +10:00
(replace the number with the version number of the rock you want to install)
2026-06-20 12:15:52 +10:00
## Changelog
2026-07-07 11:12:24 +10:00
### 1.2.1
- Made `neb build` look for C files in a src/ folder instead of the current folder
### 1.2.0
- Add support for modules written in Comet
2026-07-04 19:33:17 +10:00
- Made it so that you don't have to build Comet to install the headers
2026-07-04 20:04:09 +10:00
- Added the `neb build` command to make it easier to develop rocks
2026-06-20 17:09:35 +10:00
### 1.1.0
- Switched from getting the latest commit of packages to getting the latest release
- Added the `uninstall` subcommand
2026-06-20 17:24:12 +10:00
- Added the `search` subcommand
2026-06-20 17:09:35 +10:00
2026-06-20 12:15:52 +10:00
### 1.0.1
- Fix long description hopefully
### 1.0.0
- Initial release