diff options
author | Ajay Ramachandran <[email protected]> | 2020-02-04 01:43:49 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-02-04 01:43:49 -0500 |
commit | 0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f (patch) | |
tree | 2e47640f1e28b6eb804cf184caa041b99e884c42 /webpack | |
parent | 6d312e7ba794cbb504af7a2f6a6c1ca5ae0ecc02 (diff) | |
download | SponsorBlock-0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f.tar.gz SponsorBlock-0cbe73c527c9a4c47d44c52dd2dddf42f8bdc52f.zip |
Add recursive to mkdir
Diffstat (limited to 'webpack')
-rw-r--r-- | webpack/webpack.manifest.js | 2 |
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); } } |