mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: build cache
This commit is contained in:
parent
78a5683d65
commit
7e8eec0f56
@ -5,10 +5,14 @@
|
|||||||
|
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
async function handleCacheClean(cwd) {
|
async function handleCacheClean(cwd) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const cachePath = path.join(cwd, '.cache/webpack');
|
const cachePath = path.join(cwd, '.cache/webpack');
|
||||||
|
if (!fs.existsSync(cachePath)) {
|
||||||
|
return resolve();
|
||||||
|
}
|
||||||
require('get-folder-size')(cachePath, (err, size) => {
|
require('get-folder-size')(cachePath, (err, size) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
return reject(err);
|
return reject(err);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user