fix: build cache

This commit is contained in:
winixt 2023-01-10 18:01:52 +08:00
parent 4dba1f31ed
commit a7ed9297d4

View File

@ -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);