HomyeeKing / check-cli-update

auto generate update message for CLI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

check-cli-update

npm version npm downloads

for CLI developer, you can add this function to remind user to update the command in time.

Install

npm i check-cli-update

Usage

import { checkUpdate } from "check-cli-update"
checkUpdate({
  cwd: "your cli folder location",
})

take @homy/gito-core for example, if the version you use is 0.0.1,you will see a message like

The latest version of @homy/gito-core is 1.0.0 and you have 0.0.1. Update it now: npm i -g @homy/gito-core

also you can custom the tips by customTips callback and cwd by cwd option

import { checkUpdate } from "check-cli-update"
checkUpdate({
  customTips({
      latestVersion: string
      curVersion: string
      pkgName: string
    }) {},

  cwd:'xxx'
})

About

auto generate update message for CLI

License:MIT License


Languages

Language:TypeScript 86.7%Language:Shell 13.3%