mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
321 B
Bash
Executable File
15 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ORIGDIR=$(pwd)
|
|
cd $(dirname $0)
|
|
cd ../../..
|
|
TOPDIR=$(pwd)
|
|
|
|
cd $TOPDIR
|
|
|
|
${TOPDIR}/dev_bundle/bin/node \
|
|
${TOPDIR}/dev_bundle/lib/node_modules/.bin/jsdoc \
|
|
-t "${TOPDIR}/scripts/admin/jsdoc/docdata-jsdoc-template" \
|
|
-c "${TOPDIR}/scripts/admin/jsdoc/jsdoc-conf.json" \
|
|
-r "${TOPDIR}/packages/"
|