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:52 UTC

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

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
         }