mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
chore(lune): fix manifest PackageTarget
type
Co-authored-by: Luka <47296785+lukadev-0@users.noreply.github.com>
This commit is contained in:
parent
80df6f053d
commit
02c835f80f
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…
Reference in a new issue