Add generated_docs dir to clean command

This commit is contained in:
Fabio Berger
2018-08-21 23:20:01 +01:00
parent da15df2c2d
commit 1bbd7bf870
11 changed files with 11 additions and 11 deletions

View File

@@ -16,7 +16,7 @@
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
"test:circleci": "yarn test:coverage",
"run_mocha": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --exit",
"clean": "shx rm -rf lib test_temp",
"clean": "shx rm -rf lib test_temp generated_docs",
"build": "tsc",
"docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json $JSON_FILE_PATH $PROJECT_FILES"
},