diff --git a/packages/fes-preset-built-in/src/plugins/commands/dev/index.js b/packages/fes-preset-built-in/src/plugins/commands/dev/index.js index b5b88c0e..dcd6dd34 100644 --- a/packages/fes-preset-built-in/src/plugins/commands/dev/index.js +++ b/packages/fes-preset-built-in/src/plugins/commands/dev/index.js @@ -5,10 +5,14 @@ const assert = require('assert'); const path = require('path'); +const fs = require('fs'); async function handleCacheClean(cwd) { return new Promise((resolve, reject) => { const cachePath = path.join(cwd, '.cache/webpack'); + if (!fs.existsSync(cachePath)) { + return resolve(); + } require('get-folder-size')(cachePath, (err, size) => { if (err) { return reject(err);