chore(lune): address requested review changes

Co-authored-by: Luka <47296785+lukadev-0@users.noreply.github.com>
This commit is contained in:
Erica Marigold 2024-12-08 18:24:10 +00:00
parent 02c835f80f
commit d515a89d01
Signed by: DevComp
GPG key ID: 429EF1C337871656
2 changed files with 4 additions and 3 deletions

View file

@ -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,

View file

@ -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",