(refactor) do generateDTS in build-assets (#11812)

This commit is contained in:
かっこかり 2023-09-10 19:31:01 +09:00 committed by GitHub
parent c0838c473f
commit 7bd0a5b7cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View file

@ -10,6 +10,7 @@ import postcss from 'postcss';
import * as terser from 'terser';
import locales from '../locales/index.js';
import generateDTS from '../locales/generateDTS.js';
import meta from '../package.json' assert { type: "json" };
async function copyFrontendFonts() {
@ -21,6 +22,8 @@ async function copyFrontendTablerIcons() {
}
async function copyFrontendLocales() {
generateDTS();
await fs.mkdir('./built/_frontend_dist_/locales', { recursive: true });
const v = { '_version_': meta.version };