Skip to content

Commit fa145ab

Browse files
committed
Commit build output to repo because GitHub actions are dumb.
1 parent 99a2cc9 commit fa145ab

10 files changed

Lines changed: 49086 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ out
141141

142142
# Nuxt.js build / generate output
143143
.nuxt
144-
dist
145144

146145
# Gatsby files
147146
.cache/

dist/bbcode.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* Convert a markdown string to BBCode
3+
* @param markdown The markdown to convert
4+
* @returns The converted BBCode
5+
*/
6+
export declare function convert(markdown: string): string;

dist/cli.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

dist/command.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare function command(...args: string[]): Promise<number | null>;

dist/gmad.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* Create a GMA file for an addon.
3+
* @param dir The directory to create the addon from.
4+
* @param out The directory to output the addon to.
5+
* @returns The absolute path to the addon.
6+
*/
7+
export declare function create(dir: string, out: string): Promise<string>;
8+
/**
9+
* Download gmad
10+
* @returns The absolute path to the gmad executable.
11+
*/
12+
export declare function download(): Promise<string>;

dist/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

0 commit comments

Comments
 (0)