22 lines
627 B
Plaintext
22 lines
627 B
Plaintext
# KCL Version configuration for nushell taskserv
|
|
# Uses proper import from centralized schema definitions
|
|
import taskservs.version as schema
|
|
|
|
# Nushell shell taskserv configuration
|
|
_version = schema.TaskservVersion {
|
|
name = "nushell"
|
|
version = schema.Version {
|
|
current = "0.107.1"
|
|
source = "https://github.com/nushell/nushell/releases"
|
|
tags = "https://github.com/nushell/nushell/tags"
|
|
site = "https://www.nushell.sh/"
|
|
# Pinned for system stability
|
|
check_latest = True
|
|
grace_period = 86400
|
|
}
|
|
dependencies = []
|
|
}
|
|
|
|
# Output for dynamic cache system
|
|
_version
|