The previous pattern `(-[\w.]+)?` used `\w` which excludes hyphens, causing versions like `1.2.3-alpha-1` and `1.2.3-rc-test` to be misclassified as unpinned tags. Updated both plugin-entry.ts and sync-package-json.ts (which share the definition) to the spec-compliant pattern that allows dot-separated identifiers using [0-9A-Za-z-] and optional build metadata. Also adds String() coercion before .trim() in sync-package-json.ts to guard against a TypeError if the parsed JSON value for currentVersion is non-string at runtime. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import * as fs from "node:fs"
|
|
import type { OpencodeConfig } from "../types"
|
|
import { PACKAGE_NAME } from "../constants"
|
|
import { getConfigPaths } from "./config-paths"
|
|
import { stripJsonComments } from "./jsonc-strip"
|
|
|
|
export interface PluginEntryInfo {
|
|
entry: string
|
|
isPinned: boolean
|
|
pinnedVersion: string | null
|
|
configPath: string
|
|
}
|
|
|
|
const EXACT_SEMVER_REGEX = /^\d+\.\d+\.\d+(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?$/
|
|
|
|
export function findPluginEntry(directory: string): PluginEntryInfo | null {
|
|
for (const configPath of getConfigPaths(directory)) {
|
|
try {
|
|
if (!fs.existsSync(configPath)) continue
|
|
const content = fs.readFileSync(configPath, "utf-8")
|
|
const config = JSON.parse(stripJsonComments(content)) as OpencodeConfig
|
|
const plugins = config.plugin ?? []
|
|
|
|
for (const entry of plugins) {
|
|
if (entry === PACKAGE_NAME) {
|
|
return { entry, isPinned: false, pinnedVersion: null, configPath }
|
|
}
|
|
if (entry.startsWith(`${PACKAGE_NAME}@`)) {
|
|
const pinnedVersion = entry.slice(PACKAGE_NAME.length + 1)
|
|
const isPinned = EXACT_SEMVER_REGEX.test(pinnedVersion.trim())
|
|
return { entry, isPinned, pinnedVersion, configPath }
|
|
}
|
|
}
|
|
} catch {
|
|
continue
|
|
}
|
|
}
|
|
|
|
return null
|
|
}
|