mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
import yaml from 'yaml'
|
|
import { readFileSync, writeFileSync } from 'fs'
|
|
|
|
const pkg = readFileSync('package.json', 'utf-8')
|
|
const changelog = readFileSync('changelog.md', 'utf-8')
|
|
const { version } = JSON.parse(pkg)
|
|
const latest = {
|
|
version,
|
|
changelog
|
|
}
|
|
|
|
writeFileSync('latest.yml', yaml.stringify(latest))
|