source: frontend/node_modules/svgo/Makefile

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 524 bytes
RevLine 
[9af201e]1test:
2 @npm run test
3
4lib-cov:
5 @./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib
6
7coverage: lib-cov
8 @COVERAGE=1 ISTANBUL_REPORTERS=text-summary ./node_modules/.bin/mocha --reporter mocha-istanbul
9 @rm -rf lib-cov
10
11coveralls: lib-cov
12 @COVERAGE=1 ISTANBUL_REPORTERS=lcovonly ./node_modules/.bin/mocha --reporter mocha-istanbul
13 @cat lcov.info | ./node_modules/.bin/coveralls
14 @rm -rf lib-cov lcov.info
15
16travis: lint test coveralls
17
18lint:
19 @npm run lint
20
21.PHONY: test
Note: See TracBrowser for help on using the repository browser.