Repository: incubator-zeppelin Updated Branches: refs/heads/master 11a45e2e2 -> 4a23139fd
[Hot Fix] Fix build failure due to latest bower (1.7.5) ### What is this PR for? Build fails due to new bower version 1.7.5. This PR tries to fix this issue by adding the previous version (1.7.2) in package.json instead of npm auto updating bower to latest. ### What type of PR is it? Hot Fix ### Is there a relevant Jira issue? ZEPPELIN-634 ### How should this be tested? delete `zeppelin-web/node_modules/*` and run `mvn clean install` in zeppelin-web Author: Renjith Kamath <[email protected]> Closes #677 from r-kamath/npmBuildFix and squashes the following commits: dcfbd4e [Renjith Kamath] Fix build failure due to latest bower (1.7.5) Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/4a23139f Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/4a23139f Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/4a23139f Branch: refs/heads/master Commit: 4a23139fd9739f9a8e475b1bfd2be46299d5428e Parents: 11a45e2 Author: Renjith Kamath <[email protected]> Authored: Wed Jan 27 12:35:21 2016 +0530 Committer: Lee moon soo <[email protected]> Committed: Wed Jan 27 16:59:41 2016 +0900 ---------------------------------------------------------------------- zeppelin-web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/4a23139f/zeppelin-web/package.json ---------------------------------------------------------------------- diff --git a/zeppelin-web/package.json b/zeppelin-web/package.json index 62d19b4..9f56180 100644 --- a/zeppelin-web/package.json +++ b/zeppelin-web/package.json @@ -7,7 +7,7 @@ }, "devDependencies": { "autoprefixer": "^6.1.0", - "bower": "", + "bower": "1.7.2", "grunt": "^0.4.1", "grunt-concurrent": "^0.5.0", "grunt-contrib-clean": "^0.5.0",
