mirror of
https://github.com/pesde-pkg/scripts.git
synced 2025-04-03 18:30:55 +01:00
chore(lune): fix manifest PackageTarget
type
Co-authored-by: Luka <47296785+lukadev-0@users.noreply.github.com>
This commit is contained in:
parent
2662ddf9a7
commit
cafd429a95
1 changed files with 5 additions and 4 deletions
|
@ -31,13 +31,14 @@ export type DependencySpecifier = ((
|
|||
}) | { wally: string, version: string, index: string? }
|
||||
|
||||
export type PackageTarget = {
|
||||
environment: "luau" | "lune" | "roblox" | "roblox_server",
|
||||
environment: "roblox" | "roblox_server",
|
||||
lib: string,
|
||||
} | ({ environment: "luau" | "lune" } & ({
|
||||
bin: string,
|
||||
} | {
|
||||
environment: "luau" | "lune",
|
||||
lib: string,
|
||||
bin: string,
|
||||
scripts: { [string]: string },
|
||||
}))
|
||||
}
|
||||
|
||||
export type PesdeManifest<T = {}> = {
|
||||
name: string,
|
||||
|
|
Loading…
Add table
Reference in a new issue