We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e0ded9 commit 82ceb65Copy full SHA for 82ceb65
Makefile
@@ -3,11 +3,10 @@ NODE ?= node
3
SRC = $(shell find lib -name "*.js")
4
BUILD = $(subst lib,build,$(SRC))
5
6
-build:
7
- @mkdir -p build/remotes
8
- @$(MAKE) $(BUILD)
+build: $(BUILD)
9
10
build/%.js: lib/%.js
+ @mkdir -p build/remotes
11
@$(BIN)regenerator --include-runtime $< > $@
12
13
clean:
lib/remotes/local.js
@@ -22,7 +22,9 @@ function Local(options) {
22
23
options = options || {}
24
25
- this.out = resolve(options.root || process.cwd(), options.out || options.dir || 'components')
+ this.out = resolve(options.out
26
+ || options.dir
27
+ || 'components')
28
debug('checking local components at %s', this.out);
29
30
Remote.call(this, options)
0 commit comments