kerria 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -122,7 +122,7 @@ function createKerria(sign, setup) {
|
|
|
122
122
|
}
|
|
123
123
|
function outputLoads() {
|
|
124
124
|
if (isDev) writeJsonSync(cachePath, caches);
|
|
125
|
-
else rmSync(cachePath);
|
|
125
|
+
else rmSync(cachePath, { force: true });
|
|
126
126
|
for (const info of ctx.loadInfos) info.output();
|
|
127
127
|
}
|
|
128
128
|
return {
|