summaryrefslogtreecommitdiffstats
path: root/js-old/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/README.md')
-rw-r--r--js-old/README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/js-old/README.md b/js-old/README.md
new file mode 100644
index 000000000..aa72e4977
--- /dev/null
+++ b/js-old/README.md
@@ -0,0 +1,29 @@
+# JavaScript Development
+JavaScript is built and minified using gulp.
+
+Therefore you need to install **Node.js 6+ and npm**. Then use npm to install **gulp-cli**:
+
+ sudo npm -g install gulp-cli
+
+Then install the local dependencies by running:
+
+ npm install
+
+## Tasks
+The following tasks are available:
+
+* **Build the JavaScript**:
+
+ gulp
+
+* **Watch for changes and build JavaScript**:
+
+ gulp watch
+
+* **Run JavaScript unit tests**:
+
+ gulp karma
+
+* **Watch for changes and run JavaScript unit tests**:
+
+ gulp watch-karma