From 98a4f195c2c65d24ee06d302e54550e4be19935e Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Thu, 29 Jan 2015 13:31:55 -0500 Subject: [PATCH] Add grunt task for running plato reports --- .jshintrc | 4 ---- Makefile | 5 ++++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.jshintrc b/.jshintrc index 81365330d8..255d14024b 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,8 +1,4 @@ { - // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options - // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc - // Documentation: http://www.jshint.com/docs/ - "browser": true, "jquery": true, "esnext": true, diff --git a/Makefile b/Makefile index f98d06bd42..d1f2f03dd3 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ MOCK_CFG ?= .PHONY: clean rebase push requirements requirements_pypi requirements_jenkins \ develop refresh adduser syncdb migrate dbchange dbshell runserver celeryd \ - receiver test test_coverage coverage_html test_ui test_jenkins dev_build \ + receiver test test_coverage coverage_html ui_analysis_report test_ui test_jenkins dev_build \ release_build release_clean sdist rpmtar mock-rpm mock-srpm \ deb deb-src debian reprepro setup_tarball @@ -240,6 +240,9 @@ test_coverage: coverage_html: coverage html +ui_analysis_report: node_modules + $(GRUNT) plato:report + # Run UI unit tests test_ui: node_modules $(GRUNT) karma:ci