Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: polymer_1.0.4/bower_components/ga-api-utils/Makefile

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 bin_path := ./node_modules/.bin
2
3 all: build
4
5 install:
6 @ npm install
7
8 lint:
9 @ $(bin_path)/jshint --show-non-errors lib test
10
11 test:
12 @ $(bin_path)/mocha --reporter spec --recursive test
13
14 test_debug:
15 @ $(bin_path)/mocha --debug-brk --reporter spec --recursive test
16
17 build: install lint test
18 @ $(bin_path)/browserify lib \
19 -s gaApiUtils \
20 | $(bin_path)/uglifyjs -o build/ga-api-utils.js
21
22 .PHONY: all install lint test test_debug build
OLDNEW
« no previous file with comments | « polymer_1.0.4/bower_components/ga-api-utils/LICENSE ('k') | polymer_1.0.4/bower_components/ga-api-utils/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698