This is an automated email from the ASF dual-hosted git repository.

gerben pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit fc5474d6f1775c00e1e3fd5fd502114ccae16141
Author: Gerben <[email protected]>
AuthorDate: Wed Jul 14 22:19:27 2021 +0200

    Make clean command clean more stuff
    
    Using gitignore as reference.
    Is ‘/coverage’ still actually created by something?
    
    Also making a tiny nitpick in gitignore.
---
 .gitignore   | 2 +-
 package.json | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index f28d081..7ed21a4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
 *.d.ts
-!/packages/**/@types/**/*.d.ts
+!/packages/**/src/**/*.d.ts
 *.d.ts.map
 .nyc_output
 coverage
diff --git a/package.json b/package.json
index 6ff42e2..85dfe58 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,7 @@
     "build:js": "lerna exec --parallel -- babel -d lib -s -x .ts --env-name 
production --root-mode upward src",
     "build:misc": "lerna exec --parallel -- cp ../../DISCLAIMER-WIP 
../../LICENSE ../../NOTICE ../../README.md .",
     "build:types": "tsc --build",
-    "clean": "tsc --build --clean && lerna exec -- rimraf DISCLAIMER-WIP 
LICENSE NOTICE README.md lib && rimraf docs",
+    "clean": "tsc --build --clean && lerna exec -- rimraf DISCLAIMER-WIP 
LICENSE NOTICE README.md lib && rimraf .nyc_output coverage docs web/dist 
*.tsbuildinfo",
     "docs": "tsc --build && typedoc",
     "lint": "eslint .",
     "prepublishOnly": "yarn run build",

Reply via email to