diff --git a/build.plugins.js b/build.plugins.js index c7fcde93..cab0daa7 100644 --- a/build.plugins.js +++ b/build.plugins.js @@ -1,4 +1,4 @@ -const { readdirSync, statSync, writeFileSync } = require('fs'); +const { readdirSync, statSync, writeFileSync, existsSync } = require('fs'); const { join } = require('path'); function isNonEmptyFolder(folderPath) { @@ -18,6 +18,10 @@ function isNonEmptyFolder(folderPath) { // Function to get all non-empty folders function getNonEmptyFolders(rootFolder) { const result = []; + if (!existsSync(rootFolder)) { + return result; + } + const items = readdirSync(rootFolder); items.forEach((item) => {