Skip to content

Commit

Permalink
chore: Drop obsolete makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Jul 28, 2021
1 parent 8262a01 commit 2ded43e
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 382 deletions.
42 changes: 0 additions & 42 deletions common.mk

This file was deleted.

39 changes: 2 additions & 37 deletions fluent-bundle/makefile
Original file line number Diff line number Diff line change
@@ -1,41 +1,6 @@
PACKAGE := @fluent/bundle
GLOBAL := FluentBundle
export SHELL := /bin/bash

include ../common.mk

lint:
@$(ESLINT) --max-warnings 0 src/ test/
@echo -e " $(OK) lint"

.PHONY: compile
compile: esm/.compiled

esm/.compiled: $(SOURCES)
@$(TSC)
@touch $@
@echo -e " $(OK) esm/ compiled"

.PHONY: test
test: esm/.compiled
@$(MOCHA_CMD)

.PHONY: build
build: index.js

index.js: esm/.compiled
@$(ROLLUP_CMD) $@
@echo -e " $(OK) $@ built"

html:
@$(TYPEDOC_CMD)
@echo -e " $(OK) html built"

clean:
@rm -f esm/*.js esm/*.d.ts esm/.compiled
@rm -f index.js
@rm -rf $(DOC_DESTINATION)
@rm -rf .nyc_output coverage
@echo -e " $(OK) clean"
OK := \033[32;01m✓\033[0m

BEHAVIOR_FTL := $(wildcard ../fluent-syntax/test/fixtures_behavior/*.ftl)
REFERENCE_FTL := $(wildcard ../fluent-syntax/test/fixtures_reference/*.ftl)
Expand Down
37 changes: 0 additions & 37 deletions fluent-dedent/makefile

This file was deleted.

46 changes: 0 additions & 46 deletions fluent-dom/makefile

This file was deleted.

25 changes: 0 additions & 25 deletions fluent-gecko/makefile

This file was deleted.

38 changes: 0 additions & 38 deletions fluent-langneg/makefile

This file was deleted.

46 changes: 0 additions & 46 deletions fluent-react/makefile

This file was deleted.

38 changes: 0 additions & 38 deletions fluent-sequence/makefile

This file was deleted.

39 changes: 2 additions & 37 deletions fluent-syntax/makefile
Original file line number Diff line number Diff line change
@@ -1,41 +1,6 @@
PACKAGE := @fluent/syntax
GLOBAL := FluentSyntax
export SHELL := /bin/bash

include ../common.mk

lint:
@$(ESLINT) --max-warnings 0 src/ test/
@echo -e " $(OK) lint"

.PHONY: compile
compile: esm/.compiled

esm/.compiled: $(SOURCES)
@$(TSC)
@touch $@
@echo -e " $(OK) esm/ compiled"

.PHONY: test
test: esm/.compiled
@$(MOCHA_CMD)

.PHONY: build
build: index.js

index.js: esm/.compiled
@$(ROLLUP_CMD) $@
@echo -e " $(OK) $@ built"

html:
@$(TYPEDOC_CMD)
@echo -e " $(OK) html built"

clean:
@rm -f esm/*.js esm/*.d.ts esm/.compiled
@rm -f index.js
@rm -rf $(DOC_DESTINATION)
@rm -rf .nyc_output coverage
@echo -e " $(OK) clean"
OK := \033[32;01m✓\033[0m

STRUCTURE_FTL := $(wildcard test/fixtures_structure/*.ftl)
STRUCTURE_AST := $(STRUCTURE_FTL:.ftl=.json)
Expand Down
Loading

0 comments on commit 2ded43e

Please sign in to comment.