From a8dd818a571e4e52dcdd779344c615228ab93ea9 Mon Sep 17 00:00:00 2001 From: jhuleatt Date: Wed, 24 Apr 2019 14:11:48 -0700 Subject: [PATCH] add a script to clear out compiled ts --- reactfire/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/reactfire/package.json b/reactfire/package.json index f143f36..b14b022 100644 --- a/reactfire/package.json +++ b/reactfire/package.json @@ -4,6 +4,7 @@ "description": "Firebase library for React", "main": "index.js", "scripts": { + "clean": "find ./ -name '**.js' -delete && find ./ -name '**.jsx' -delete && find ./ -name '**.map' -delete", "build": "tsc index.ts --lib DOM,ES2018 --sourceMap --declaration --jsx react", "test": "jest", "watch": "tsc index.ts --lib DOM,ES2018 --watch --sourceMap --declaration --jsx react",