aboutsummaryrefslogtreecommitdiffstats
path: root/build/buildjsdocs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/buildjsdocs.sh')
-rwxr-xr-xbuild/buildjsdocs.sh41
1 files changed, 41 insertions, 0 deletions
diff --git a/build/buildjsdocs.sh b/build/buildjsdocs.sh
new file mode 100755
index 00000000000..dd2af210277
--- /dev/null
+++ b/build/buildjsdocs.sh
@@ -0,0 +1,41 @@
+#!/usr/bin/env bash
+#
+# ownCloud
+#
+# Run JS tests
+#
+# @author Vincent Petry
+# @copyright 2014 Vincent Petry <pvince81@owncloud.com>
+#
+NPM="$(which npm 2>/dev/null)"
+OUTPUT_DIR="jsdocs"
+
+JS_FILES="../core/js/*.js ../core/js/**/*.js ../apps/*/js/*.js"
+
+if test -z "$NPM"
+then
+ echo 'Node JS >= 0.8 is required to build the documentation' >&2
+ exit 1
+fi
+
+# update/install test packages
+$NPM install --prefix . --link jsdoc || exit 3
+
+JSDOC_BIN="$(which jsdoc 2>/dev/null)"
+
+# If not installed globally, try local version
+if test -z "$JSDOC_BIN"
+then
+ JSDOC_BIN="./node_modules/jsdoc/jsdoc.js"
+fi
+
+if test -z "$JSDOC_BIN"
+then
+ echo 'jsdoc executable not found' >&2
+ exit 2
+fi
+
+mkdir -p "$OUTPUT_DIR"
+
+NODE_PATH="./node_modules" $JSDOC_BIN -d "$OUTPUT_DIR" $JS_FILES
+