Skip to content

Commit 2ded43e

Browse files
committed
chore: Drop obsolete makefiles
1 parent 8262a01 commit 2ded43e

File tree

11 files changed

+7
-382
lines changed

11 files changed

+7
-382
lines changed

common.mk

Lines changed: 0 additions & 42 deletions
This file was deleted.

fluent-bundle/makefile

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,6 @@
1-
PACKAGE := @fluent/bundle
2-
GLOBAL := FluentBundle
1+
export SHELL := /bin/bash
32

4-
include ../common.mk
5-
6-
lint:
7-
@$(ESLINT) --max-warnings 0 src/ test/
8-
@echo -e " $(OK) lint"
9-
10-
.PHONY: compile
11-
compile: esm/.compiled
12-
13-
esm/.compiled: $(SOURCES)
14-
@$(TSC)
15-
@touch $@
16-
@echo -e " $(OK) esm/ compiled"
17-
18-
.PHONY: test
19-
test: esm/.compiled
20-
@$(MOCHA_CMD)
21-
22-
.PHONY: build
23-
build: index.js
24-
25-
index.js: esm/.compiled
26-
@$(ROLLUP_CMD) $@
27-
@echo -e " $(OK) $@ built"
28-
29-
html:
30-
@$(TYPEDOC_CMD)
31-
@echo -e " $(OK) html built"
32-
33-
clean:
34-
@rm -f esm/*.js esm/*.d.ts esm/.compiled
35-
@rm -f index.js
36-
@rm -rf $(DOC_DESTINATION)
37-
@rm -rf .nyc_output coverage
38-
@echo -e " $(OK) clean"
3+
OK := \033[32;01m✓\033[0m
394

405
BEHAVIOR_FTL := $(wildcard ../fluent-syntax/test/fixtures_behavior/*.ftl)
416
REFERENCE_FTL := $(wildcard ../fluent-syntax/test/fixtures_reference/*.ftl)

fluent-dedent/makefile

Lines changed: 0 additions & 37 deletions
This file was deleted.

fluent-dom/makefile

Lines changed: 0 additions & 46 deletions
This file was deleted.

fluent-gecko/makefile

Lines changed: 0 additions & 25 deletions
This file was deleted.

fluent-langneg/makefile

Lines changed: 0 additions & 38 deletions
This file was deleted.

fluent-react/makefile

Lines changed: 0 additions & 46 deletions
This file was deleted.

fluent-sequence/makefile

Lines changed: 0 additions & 38 deletions
This file was deleted.

fluent-syntax/makefile

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,6 @@
1-
PACKAGE := @fluent/syntax
2-
GLOBAL := FluentSyntax
1+
export SHELL := /bin/bash
32

4-
include ../common.mk
5-
6-
lint:
7-
@$(ESLINT) --max-warnings 0 src/ test/
8-
@echo -e " $(OK) lint"
9-
10-
.PHONY: compile
11-
compile: esm/.compiled
12-
13-
esm/.compiled: $(SOURCES)
14-
@$(TSC)
15-
@touch $@
16-
@echo -e " $(OK) esm/ compiled"
17-
18-
.PHONY: test
19-
test: esm/.compiled
20-
@$(MOCHA_CMD)
21-
22-
.PHONY: build
23-
build: index.js
24-
25-
index.js: esm/.compiled
26-
@$(ROLLUP_CMD) $@
27-
@echo -e " $(OK) $@ built"
28-
29-
html:
30-
@$(TYPEDOC_CMD)
31-
@echo -e " $(OK) html built"
32-
33-
clean:
34-
@rm -f esm/*.js esm/*.d.ts esm/.compiled
35-
@rm -f index.js
36-
@rm -rf $(DOC_DESTINATION)
37-
@rm -rf .nyc_output coverage
38-
@echo -e " $(OK) clean"
3+
OK := \033[32;01m✓\033[0m
394

405
STRUCTURE_FTL := $(wildcard test/fixtures_structure/*.ftl)
416
STRUCTURE_AST := $(STRUCTURE_FTL:.ftl=.json)

0 commit comments

Comments
 (0)