fix: build cache

This commit is contained in:
winixt 2023-01-10 18:01:52 +08:00
parent 78a5683d65
commit 7e8eec0f56

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