mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
13 lines
257 B
Bash
Executable File
13 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd `dirname $0`/..
|
|
|
|
echo "Generate API doc..."
|
|
documentation build \
|
|
--shallow packages/gl-react/flow/*.js packages/gl-react/src/**.js \
|
|
-c documentation.yml \
|
|
-g --name gl-react \
|
|
-o ./cookbook/API.json -f json
|
|
echo "Done."
|
|
echo
|