Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
feat: create build directory using recursive option
Browse files Browse the repository at this point in the history
  • Loading branch information
amille44420 committed Feb 29, 2020
1 parent 8d71d26 commit c5999d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const webpack = require('webpack');

const cleanBuild = ({ paths }) => {
rimraf.sync(paths.appBuild);
fs.mkdirSync(paths.appBuild);
fs.mkdirSync(paths.appBuild, { recursive: true });
};

const build = (settings, webpackConfig) => {
Expand Down

0 comments on commit c5999d4

Please sign in to comment.