Explictly specify the target folder of assets (#1359)

This commit is contained in:
Xiaogang 2024-07-25 18:38:42 +08:00 коммит произвёл GitHub
Родитель f9c4db3761
Коммит 881275215b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -41,7 +41,7 @@ async function copyRequiredFiles(project: Project) {
await copyResources(
join(resources, 'assets'),
async (fname, content) =>
project.state.writeFile(fname, content, undefined, 'source-file-other'),
project.state.writeFile(join(project.baseFolder, fname), content, undefined, 'source-file-other'),
undefined,
transformOutput
);