Merge pull request #47 from aringlai/vue3

fix: 文件复制,目标文件夹不存在
This commit is contained in:
harrywan 2021-04-02 14:06:38 +08:00 committed by GitHub
commit 0edd01145c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,6 +76,9 @@ export default function (api) {
files.forEach((file) => {
const source = join(path, file);
const target = join(base, file);
if (!existsSync(dirname(target))) {
api.utils.mkdirp.sync(dirname(target));
}
if (statSync(source).isDirectory()) {
api.utils.mkdirp.sync(target);
} else if (Array.isArray(ignore)) {