Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
environment:
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
- run: npm run check-typescript
- run:
name: dependency audit
command: ./scripts/better-audit.sh
- store_test_results:
path: reports/junit/
- store_artifacts:
Expand Down
5 changes: 5 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ TITLE=LaunchDarkly React SDK (${LD_RELEASE_VERSION})
endif

html:
cp ../package.json before-typedoc-package.json
cp ../package-lock.json before-typedoc-package-lock.json
cd .. && npm install typedoc
rm -rf build
mkdir -p build/html
# For unknown reasons, TypeDoc doesn't seem to work reliably in this project when we put our
Expand All @@ -24,5 +27,7 @@ html:
--excludeExternals \
--externalPattern "**/node_modules/**" \
--readme none
mv before-typedoc-package.json ../package.json
mv before-typedoc-package-lock.json ../package-lock.json

.PHONY: html
227 changes: 39 additions & 188 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading