Skip to content

Commit 4ca49c7

Browse files
committed
Move destroy method to AssetCache
1 parent bf70fa0 commit 4ca49c7

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/AssetCache.js

+15
Original file line numberDiff line numberDiff line change
@@ -303,5 +303,20 @@ class AssetCache {
303303

304304
return this.source;
305305
}
306+
307+
// for testing
308+
hasCacheFiles() {
309+
return fs.existsSync(this.cachePath) || fs.existsSync(this.getCachedContentsPath());
310+
}
311+
312+
// for testing
313+
async destroy() {
314+
if (fs.existsSync(this.cachePath)) {
315+
await fsp.unlink(this.cachePath);
316+
}
317+
if (fs.existsSync(this.getCachedContentsPath())) {
318+
await fsp.unlink(this.getCachedContentsPath());
319+
}
320+
}
306321
}
307322
module.exports = AssetCache;

src/RemoteAssetCache.js

-15
Original file line numberDiff line numberDiff line change
@@ -118,20 +118,5 @@ class RemoteAssetCache extends AssetCache {
118118
}
119119
}
120120
}
121-
122-
// for testing
123-
hasCacheFiles() {
124-
return fs.existsSync(this.cachePath) || fs.existsSync(this.getCachedContentsPath());
125-
}
126-
127-
// for testing
128-
async destroy() {
129-
if (fs.existsSync(this.cachePath)) {
130-
await fsp.unlink(this.cachePath);
131-
}
132-
if (fs.existsSync(this.getCachedContentsPath())) {
133-
await fsp.unlink(this.getCachedContentsPath());
134-
}
135-
}
136121
}
137122
module.exports = RemoteAssetCache;

0 commit comments

Comments
 (0)