Index: polymer_1.0.4/bower_components/ga-api-utils/Makefile |
diff --git a/polymer_1.0.4/bower_components/ga-api-utils/Makefile b/polymer_1.0.4/bower_components/ga-api-utils/Makefile |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d1e18daa75f25d828fca665d6acbeaa2ebcd1730 |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/ga-api-utils/Makefile |
@@ -0,0 +1,22 @@ |
+bin_path := ./node_modules/.bin |
+ |
+all: build |
+ |
+install: |
+ @ npm install |
+ |
+lint: |
+ @ $(bin_path)/jshint --show-non-errors lib test |
+ |
+test: |
+ @ $(bin_path)/mocha --reporter spec --recursive test |
+ |
+test_debug: |
+ @ $(bin_path)/mocha --debug-brk --reporter spec --recursive test |
+ |
+build: install lint test |
+ @ $(bin_path)/browserify lib \ |
+ -s gaApiUtils \ |
+ | $(bin_path)/uglifyjs -o build/ga-api-utils.js |
+ |
+.PHONY: all install lint test test_debug build |