summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/throttleit/Makefile
blob: 096ef6cd2ae5a42eb6cfbb1118c1016bb7ea63c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
build: components index.js
	@component build --dev

components: component.json
	@component install --dev

clean:
	rm -fr build components template.js

test: node_modules
	@./node_modules/mocha/bin/mocha \
		--reporter spec

node_modules: package.json
	@npm install

.PHONY: clean