Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rich-text: set up autogenerated API docs #14220

Merged
merged 24 commits into from
Mar 7, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Prepare to add more packages
  • Loading branch information
oandregal committed Mar 7, 2019
commit e7ba66233aa25e0586436eb535b27ecd88d8b54e
9 changes: 8 additions & 1 deletion bin/generate-docs.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/bin/bash

npx docgen packages/e2e-test-utils/src/index.js --output packages/e2e-test-utils/README.md --to-token
declare -a packages=(
"e2e-test-utils"
)

for package in "${packages[@]}"
do
npx docgen packages/${package}/src/index.js --output packages/${package}/README.md --to-token;
done