You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/node_modules/ref/docs/gh-pages.sh

13 lines
302 B
Bash

#!/bin/sh
DIR=`dirname $0`
TMP_DOC_DIR="/tmp/ref_docs"
npm run docs \
&& rm -rf $TMP_DOC_DIR \
&& mkdir -p $TMP_DOC_DIR \
&& cp -Lrf {"$DIR/index.html","$DIR/images","$DIR/scripts","$DIR/stylesheets"} $TMP_DOC_DIR \
&& git checkout gh-pages \
&& cp -Lrf $TMP_DOC_DIR/* . \
&& echo "done"