UNPKG

vibe-cli-tool

Version:

VibeCLI v1.9 - 模板商店生态,智能部署生成,多语言支持,交互式学习系统,企业级Web全栈应用CLI工具

10 lines 472 B
import { createRequire } from 'module'; import { fileURLToPath } from 'url'; import path from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const require = createRequire(import.meta.url); // Resolve package.json two levels up from dist/constants directory after build const pkg = require(path.resolve(__dirname, '../../package.json')); export const VIBECLI_VERSION = pkg.version; //# sourceMappingURL=version.js.map