You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by he...@apache.org on 2016/01/18 21:31:43 UTC

[07/11] allura git commit: [#8039] install eslint

[#8039] install eslint


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/b40e30f1
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/b40e30f1
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/b40e30f1

Branch: refs/heads/master
Commit: b40e30f19d658e97466466990cbbb2e246416a26
Parents: 26799a1
Author: Dave Brondsema <da...@brondsema.net>
Authored: Wed Jan 13 18:13:01 2016 -0500
Committer: Heith Seewald <he...@gmail.com>
Committed: Mon Jan 18 14:43:55 2016 -0500

----------------------------------------------------------------------
 Allura/docs/getting_started/installation.rst | 2 +-
 Dockerfile                                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/b40e30f1/Allura/docs/getting_started/installation.rst
----------------------------------------------------------------------
diff --git a/Allura/docs/getting_started/installation.rst b/Allura/docs/getting_started/installation.rst
index 987f99e..86ff030 100644
--- a/Allura/docs/getting_started/installation.rst
+++ b/Allura/docs/getting_started/installation.rst
@@ -191,7 +191,7 @@ For non-Ubuntu installations see https://nodejs.org/en/download/package-manager/
     (env-allura)~$ curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
     (env-allura)~$ sudo apt-get install nodejs
     (env-allura)~$ cd ~/src/allura
-    (env-allura)~$ sudo npm install -g broccoli-cli
+    (env-allura)~$ sudo npm install -g broccoli-cli eslint
     (env-allura)~$ npm install
     (env-allura)~$ npm run build
 

http://git-wip-us.apache.org/repos/asf/allura/blob/b40e30f1/Dockerfile
----------------------------------------------------------------------
diff --git a/Dockerfile b/Dockerfile
index 82860f6..423848e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -37,7 +37,7 @@ RUN curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
     apt-get install --yes nodejs
 
 # only do the global installation here.  All local packages are installed in init-docker-dev.sh, since they need the shared mount
-RUN npm install -g broccoli-cli
+RUN npm install -g broccoli-cli eslint
 
 # Snapshot generation for SVN (and maybe other SCMs) might fail without this
 RUN locale-gen en_US.UTF-8