You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
383 B
22 lines
383 B
|
|
BIN := node_modules/.bin
|
|
|
|
build: node_modules build/build.js
|
|
build/build.js: index.js components
|
|
@mkdir -p $(dir $@)
|
|
@$(BIN)/component-build --dev
|
|
|
|
components: node_modules component.json
|
|
@$(BIN)/component-install --dev
|
|
|
|
test: build/build.js
|
|
$(BIN)/component-test browser
|
|
|
|
clean:
|
|
rm -fr build components
|
|
|
|
node_modules: package.json
|
|
@npm install
|
|
@touch $@
|
|
|
|
.PHONY: clean test
|
|
|