mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-19 04:18:55 +00:00
28 lines
No EOL
451 B
Text
28 lines
No EOL
451 B
Text
def "nu-complete pnpm" [] {
|
|
^npm -l
|
|
|lines
|
|
|find 'Run "'
|
|
|str trim
|
|
|split column -c ' '
|
|
|get column4
|
|
|str replace '"' ''
|
|
}
|
|
|
|
export extern "pnpm" [
|
|
command?: string@"nu-complete pnpm"
|
|
]
|
|
|
|
def "nu-complete pnpm run" [] {
|
|
open ./package.json
|
|
|get scripts
|
|
|columns
|
|
}
|
|
|
|
export extern "pnpm run" [
|
|
command?: string@"nu-complete pnpm run"
|
|
--workspace(-w)
|
|
--include-workspace-root
|
|
--if-present
|
|
--ignore-scripts
|
|
--script-shell
|
|
] |