feat(aklive2d): remove versioning

This commit is contained in:
Haoyu Xu
2023-08-23 21:46:17 +08:00
parent 930447889f
commit 9cb3be7c6e
9 changed files with 0 additions and 46 deletions

View File

@@ -1,7 +1,6 @@
/* eslint-disable no-undef */
import path from 'path'
import { read } from './yaml.js'
import { read as readVersion } from './version.js'
import { getOperatorId } from './charword_table.js'
export default function () {
@@ -22,11 +21,5 @@ function process(config) {
operator.id = getOperatorId(operator).replace(/^(char_)(\d+)(_.+)$/g, '$2')
}
// version
config.version = {
showcase: readVersion(path.join(__projectRoot)),
directory: readVersion(path.join(__projectRoot, 'directory')),
}
return config
}