package.json: Fix clean-ts-files script to spare app/node_modules.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2020-02-29 17:03:40 -08:00
parent 9370f783ba
commit ef0b056437

View File

@@ -22,7 +22,7 @@
},
"scripts": {
"start": "node tools/run-dev",
"clean-ts-files": "git clean app/*.js -xf",
"clean-ts-files": "git clean app/*.js -e node_modules -xf",
"watch-ts": "tsc -w",
"reinstall": "node ./tools/reinstall-node-modules.js",
"postinstall": "electron-builder install-app-deps",