You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin-version-feature.ts 253B

12345678910
  1. import { isEqualOrLaterThanVersion } from './semver'
  2. const SUPPORT_MCP_VERSION = '0.0.2'
  3. export const isSupportMCP = (version?: string): boolean => {
  4. if (!version)
  5. return false
  6. return isEqualOrLaterThanVersion(version, SUPPORT_MCP_VERSION)
  7. }