Skip to content

Commit edda60f

Browse files
committed
Properly set dependencies of index.js and compat.js targets
1 parent cde80aa commit edda60f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fluent-dedent/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test: esm/.compiled
2525

2626
build: index.js compat.js
2727

28-
index.js: $(SOURCES)
28+
index.js: esm/.compiled
2929
@rollup $(CURDIR)/esm/index.js \
3030
--config $(ROOT)/bundle_config.js \
3131
--banner "/* $(PACKAGE)@$(VERSION) */" \
@@ -34,7 +34,7 @@ index.js: $(SOURCES)
3434
--output.file $@
3535
@echo -e " $(OK) $@ built"
3636

37-
compat.js: $(SOURCES)
37+
compat.js: esm/.compiled
3838
@rollup $(CURDIR)/esm/index.js \
3939
--config $(ROOT)/compat_config.js \
4040
--banner "/* $(PACKAGE)@$(VERSION) */" \

fluent-sequence/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test: esm/.compiled
2525

2626
build: index.js compat.js
2727

28-
index.js: $(SOURCES)
28+
index.js: esm/.compiled
2929
@rollup $(CURDIR)/esm/index.js \
3030
--config $(ROOT)/bundle_config.js \
3131
--banner "/* $(PACKAGE)@$(VERSION) */" \
@@ -34,7 +34,7 @@ index.js: $(SOURCES)
3434
--output.file $@
3535
@echo -e " $(OK) $@ built"
3636

37-
compat.js: $(SOURCES)
37+
compat.js: esm/.compiled
3838
@rollup $(CURDIR)/esm/index.js \
3939
--config $(ROOT)/compat_config.js \
4040
--banner "/* $(PACKAGE)@$(VERSION) */" \

0 commit comments

Comments
 (0)