aboutsummaryrefslogtreecommitdiffhomepage
path: root/webpack/webpack.manifest.js
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2020-02-04 01:43:49 -0500
committerAjay Ramachandran <[email protected]>2020-02-04 01:43:49 -0500
commit0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f (patch)
tree2e47640f1e28b6eb804cf184caa041b99e884c42 /webpack/webpack.manifest.js
parent6d312e7ba794cbb504af7a2f6a6c1ca5ae0ecc02 (diff)
downloadSponsorBlock-0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f.tar.gz
SponsorBlock-0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f.zip
Add recursive to mkdir
Diffstat (limited to 'webpack/webpack.manifest.js')
-rw-r--r--webpack/webpack.manifest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack/webpack.manifest.js b/webpack/webpack.manifest.js
index 2a884b59..a7022bc3 100644
--- a/webpack/webpack.manifest.js
+++ b/webpack/webpack.manifest.js
@@ -42,7 +42,7 @@ class BuildManifest {
let result = JSON.stringify(manifest);
if (this.options.pretty) result = JSON.stringify(manifest, null, 2);
- fs.mkdirSync(distManifestFile);
+ fs.mkdirSync(distManifestFile, {recursive: true});
fs.writeFileSync(distManifestFile, result);
}
}