Skip to content

Commit

Permalink
let my inner Dalamud out for a sec
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Apr 11, 2024
1 parent f9d9f83 commit 6d40674
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/dev/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ moonlight is split into a [pnpm workspace](https://pnpm.io/workspaces). The proj
- receives the loaded config and detected extensions from `node-preload`
- loads extensions and installs their Webpack modules and patches
- `core-extensions`: built-in extensions that come with every moonlight install, mostly libraries
- `types`: types for moonlight's core, core extensions, and plugin manifests/exports
- `types`: types for moonlight's core, core extensions, and extension manifests/exports

## Build system

Expand Down
2 changes: 1 addition & 1 deletion docs/ext-dev/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Add the following to your moonlight config:

where `/path/to/sample-extension` is the folder you cloned the repository into. After restarting your client, the extension will load.

When your extension is ready, you can [distribute the plugin on a custom repository](#publishing-to-github-pages) or [submit to the official repository](/docs/ext-dev/official-repository).
When your extension is ready, you can [distribute the extension on a custom repository](#publishing-to-github-pages) or [submit to the official repository](/docs/ext-dev/official-repository).

## Project structure

Expand Down
6 changes: 3 additions & 3 deletions docs/ext-dev/official-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ While moonlight allows you to use custom repositories from URLs, it comes with a

There are some requirements for submission:

- Your plugin must be open source on a Git repository.
- Your plugin must use pnpm.
- Your plugin manifest must contain an `id`, `version`, and `meta.source`. The ID and version can be any unique string, and the source must be a URL to the repository where your code is located in.
- Your extension must be open source on a Git repository.
- Your extension must use pnpm.
- Your extension manifest must contain an `id`, `version`, and `meta.source`. The ID and version can be any unique string, and the source must be a URL to the repository where your code is located in.

Then, create a pull request to [the official repository][extensions], adding a manifest. A manifest is a JSON object that looks like this:

Expand Down

0 comments on commit 6d40674

Please sign in to comment.