From e837e8a11e5e99ee64ea935d2f37912cb69dfa80 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Tue, 4 Jan 2022 13:48:19 +0100 Subject: [PATCH] fix: clean tsconfig.buildinfo quietly (#44665) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index edf064d33e..58f7e9a15b 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "build:server": "cd ./api-server && npm run build", "clean": "npm-run-all clean:build-files clean:client clean:server clean:packages", "clean-and-develop": "npm run clean && npm ci && npm run develop", - "clean:build-files": "shx rm ./tools/tsconfig.tsbuildinfo", + "clean:build-files": "shx rm -f ./tools/tsconfig.tsbuildinfo", "clean:client": "cd ./client && npm run clean", "clean:curriculum": "shx rm ./config/curriculum.json", "clean:gatsby-site": "npm run clean:client",