You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2019/04/20 04:10:09 UTC

[incubator-flagon] branch FLAGON-344 updated: [FLAGON-378] Created WIP stub page for modifying userale at src

This is an automated email from the ASF dual-hosted git repository.

poorejc pushed a commit to branch FLAGON-344
in repository https://gitbox.apache.org/repos/asf/incubator-flagon.git


The following commit(s) were added to refs/heads/FLAGON-344 by this push:
     new 2eaade5  [FLAGON-378] Created WIP stub page for modifying userale at src
2eaade5 is described below

commit 2eaade5106550627cddc4b07d1d6d0d0022cc7b9
Author: poorejc <po...@apache.org>
AuthorDate: Sat Apr 20 00:09:54 2019 -0400

    [FLAGON-378] Created WIP stub page for modifying userale at src
---
 site/_docs/useralejs/modifying.md | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/site/_docs/useralejs/modifying.md b/site/_docs/useralejs/modifying.md
new file mode 100644
index 0000000..edd42de
--- /dev/null
+++ b/site/_docs/useralejs/modifying.md
@@ -0,0 +1,27 @@
+---
+title: Modifying UserALE.js
+component: useralejs
+permalink: /docs/useralejs/modifying
+priority: 11
+---
+
+### Building UserALE.js
+
+To modify and build your own version of ``UserALE.js``, first clone the repo, install all dependencies, and make any desired changes. Then build and minify into the build/ folder:
+
+  ```shell
+  git clone https://github.com/apache/incubator-senssoft-useralejs.git
+  npm install
+  npm run build
+  ```
+
+### Testing and Linting
+
+We maintain code quality through linting and our test suite.  To run, or run and watch for changes:
+
+  ```shell
+  npm test
+  npm run example:watch
+  ```
+
+See ``package.json`` for full script options.