Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wsignal.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

wsignal update [--manager npm|pnpm] [--global|--dev] [--yes]
wsignal update checks the npm registry for the latest @wsignal/cli version and prints update commands. It does not install anything unless you pass --yes.

Options

--manager <npm|pnpm>

Package manager to use. If omitted, wsignal uses the current package-manager user agent when available, otherwise npm.

--global

Update a global CLI installation. With npm, this runs:
npm install -g @wsignal/cli@latest
With pnpm, this runs:
pnpm add -g @wsignal/cli@latest

--dev

Update a project-local dev dependency. With npm, this runs:
npm install -D @wsignal/cli@latest
With pnpm, this runs:
pnpm add -D @wsignal/cli@latest

--yes

Run the selected update command. Without --yes, wsignal only prints the command.

Examples

Show update status and suggested commands:
wsignal update
Run a global npm update:
wsignal update --manager npm --global --yes
Run a project-local pnpm update:
wsignal update --manager pnpm --dev --yes