fix yarn run clean by adding -x to git clean

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-02-22 15:27:26 +01:00 committed by Jakub
parent fba772353e
commit fc23626dad
1 changed files with 1 additions and 1 deletions

View File

@ -43,6 +43,6 @@
"dev": "parcel index.html --out-dir dev",
"build": "parcel build index.html --out-dir build --no-content-hash --no-source-maps",
"deploy": "node bin/deploy.js",
"clean": "git clean -fd build"
"clean": "git clean -fxd build"
}
}