You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Please for the love of all that you hold dear, do everyone a favor and include a changelog here rather than making people guess at the capabilities of your module since last release*
3
+
4
+
# Description
5
+
This is a typescript template to get you started. This is not intended for beginners.
6
+
7
+
Please use the javascript template as necessary for your stuff.
8
+
9
+
10
+
## Manifest Plus
11
+
Adds the following fields to the manifest for package browsers to pick up and show information better:
12
+
13
+
```
14
+
- includes: [] # list of files to include in the zip
15
+
- icon: "" # link to icon img
16
+
- cover: "" #link to cover img
17
+
- screenshots: [] #links to screenshot images
18
+
- video: ""
19
+
- authors: [
20
+
{
21
+
"name": "name",
22
+
"email": "email",
23
+
"discord": "discord"
24
+
}
25
+
]
26
+
27
+
```
28
+
29
+
30
+
## Versioned Releases
31
+
32
+
The Github Actions script will automatically create a Latest release which will always have a module.json that points to the latest release, and a versioned release whenever you update the version in your module.json.
33
+
34
+
This allows people who depend on a specific version of your module to just install that and be version locked. The versioned releases will *not* auto update.
0 commit comments