mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: build cache
This commit is contained in:
parent
4dba1f31ed
commit
a7ed9297d4
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user