You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by se...@apache.org on 2015/03/17 23:18:51 UTC

[1/2] fauxton commit: updated refs/heads/master to c091c8e

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master b3e5b44e2 -> c091c8e92


Call JSX build in a way that works on *nix and Windows


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

Branch: refs/heads/master
Commit: c4dcda2554057e8ed180791e2b0be20f47f8ed7a
Parents: b3e5b44
Author: sebastianrothbucher <se...@googlemail.com>
Authored: Sun Mar 15 23:00:57 2015 +0100
Committer: sebastianrothbucher <se...@googlemail.com>
Committed: Sun Mar 15 23:00:57 2015 +0100

----------------------------------------------------------------------
 Gruntfile.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c4dcda25/Gruntfile.js
----------------------------------------------------------------------
diff --git a/Gruntfile.js b/Gruntfile.js
index bcf9285..df39fd5 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -407,7 +407,7 @@ module.exports = function(grunt) {
     shell: {
         'build-jsx': {
             command: [
-              './node_modules/react-tools/bin/jsx -x jsx app/addons/ app/addons/',
+              'node ./node_modules/react-tools/bin/jsx -x jsx app/addons/ app/addons/',
                 'rm -rf <%= src_path %>/js/app/views/.module-cache/'
             ].join(' && '),
             stdout: true,


[2/2] fauxton commit: updated refs/heads/master to c091c8e

Posted by se...@apache.org.
Kick out superflous remove during JSX compile


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

Branch: refs/heads/master
Commit: c091c8e9257fc8ce68affa27a2e40c46ee79bbcf
Parents: c4dcda2
Author: sebastianrothbucher <se...@googlemail.com>
Authored: Mon Mar 16 22:56:25 2015 +0100
Committer: sebastianrothbucher <se...@googlemail.com>
Committed: Mon Mar 16 22:58:37 2015 +0100

----------------------------------------------------------------------
 Gruntfile.js | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c091c8e9/Gruntfile.js
----------------------------------------------------------------------
diff --git a/Gruntfile.js b/Gruntfile.js
index df39fd5..e7c3b4e 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -406,10 +406,7 @@ module.exports = function(grunt) {
 
     shell: {
         'build-jsx': {
-            command: [
-              'node ./node_modules/react-tools/bin/jsx -x jsx app/addons/ app/addons/',
-                'rm -rf <%= src_path %>/js/app/views/.module-cache/'
-            ].join(' && '),
+            command: 'node ./node_modules/react-tools/bin/jsx -x jsx app/addons/ app/addons/',
             stdout: true,
             failOnError: true
         }