25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- 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
|