mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 15:00:37 +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? }
|
}) | { wally: string, version: string, index: string? }
|
||||||
|
|
||||||
export type PackageTarget = {
|
export type PackageTarget = {
|
||||||
environment: "luau" | "lune" | "roblox" | "roblox_server",
|
environment: "roblox" | "roblox_server",
|
||||||
lib: string,
|
lib: string,
|
||||||
} | ({ environment: "luau" | "lune" } & ({
|
|
||||||
bin: string,
|
|
||||||
} | {
|
} | {
|
||||||
|
environment: "luau" | "lune",
|
||||||
|
lib: string,
|
||||||
|
bin: string,
|
||||||
scripts: { [string]: string },
|
scripts: { [string]: string },
|
||||||
}))
|
}
|
||||||
|
|
||||||
export type PesdeManifest<T = {}> = {
|
export type PesdeManifest<T = {}> = {
|
||||||
name: string,
|
name: string,
|
||||||
|
|
Loading…
Reference in a new issue