Fix clean command to remove bundles recursively

This commit is contained in:
fabioberger
2019-08-27 10:08:08 +02:00
parent ea2bf07ea6
commit 02d4a28402

View File

@@ -10,7 +10,7 @@
"build": "npm run update:tools; yarn build:dev",
"build:prod": "npm run update:tools; node --max_old_space_size=8192 ../../node_modules/.bin/webpack --mode production",
"build:dev": "npm run update:tools; ../../node_modules/.bin/webpack --mode development",
"clean": "shx rm -f public/bundle*",
"clean": "shx rm -rf public/bundle*",
"lint": "tslint --format stylish --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"fix": "tslint --fix --format stylish --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"update:tools": "aws s3 sync s3://docs-markdown/ mdx/tools/",