mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
chore(lune): address requested review changes
Co-authored-by: Luka <47296785+lukadev-0@users.noreply.github.com>
This commit is contained in:
parent
02c835f80f
commit
d515a89d01
2 changed files with 4 additions and 3 deletions
|
@ -15,7 +15,7 @@ type Watch<T> = {
|
||||||
receivers: { thread },
|
receivers: { thread },
|
||||||
}
|
}
|
||||||
|
|
||||||
--- Crates a new `Watch` channel, returning its send and receive handles.
|
--- Creates a new `Watch` channel, returning its send and receive handles.
|
||||||
local function chan<T>(_phantom: T): ((T) -> (), () -> T?)
|
local function chan<T>(_phantom: T): ((T) -> (), () -> T?)
|
||||||
local watch: Watch<T> = {
|
local watch: Watch<T> = {
|
||||||
value = nil,
|
value = nil,
|
||||||
|
|
|
@ -25,10 +25,11 @@ export type SPDXLicense =
|
||||||
export type DependencySpecifier = ((
|
export type DependencySpecifier = ((
|
||||||
{ name: string, version: string, index: string? }
|
{ name: string, version: string, index: string? }
|
||||||
| { workspace: string, version: string }
|
| { workspace: string, version: string }
|
||||||
| { repo: string, rev: string, path: string? }
|
|
||||||
) & {
|
) & {
|
||||||
target: string?,
|
target: string?,
|
||||||
}) | { wally: string, version: string, index: string? }
|
})
|
||||||
|
| { wally: string, version: string, index: string? }
|
||||||
|
| { repo: string, rev: string, path: string? }
|
||||||
|
|
||||||
export type PackageTarget = {
|
export type PackageTarget = {
|
||||||
environment: "roblox" | "roblox_server",
|
environment: "roblox" | "roblox_server",
|
||||||
|
|
Loading…
Reference in a new issue