Skip to content

Commit bff2b78

Browse files
committed
Remove npm target
1 parent 472de66 commit bff2b78

File tree

3 files changed

+12
-42
lines changed

3 files changed

+12
-42
lines changed

tools/make/lib/stats/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
include $(TOOLS_MAKE_LIB_DIR)/stats/git.mk
2222
include $(TOOLS_MAKE_LIB_DIR)/stats/lloc_javascript.mk
23-
include $(TOOLS_MAKE_LIB_DIR)/stats/npm.mk
2423
include $(TOOLS_MAKE_LIB_DIR)/stats/repl.mk
2524
include $(TOOLS_MAKE_LIB_DIR)/stats/sloc_javascript.mk
2625

tools/make/lib/stats/npm.mk

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

tools/make/lib/stats/repl.mk

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,20 @@
1818

1919
# VARIABLES #
2020

21-
# Define the path to the script for generating REPL language stats:
22-
REPL_LANG_STATS ?= $(TOOLS_PKGS_DIR)/scripts/repl_lang_stats
21+
# Define the path to the script for printing a statistical summary of the REPL namespace:
22+
REPL_STATS ?= $(TOOLS_PKGS_DIR)/scripts/repl_lang_stats
2323

2424

25-
# TARGETS #
25+
# RULES #
2626

27-
# Compute REPL language stats.
27+
#/
28+
# Prints a statistical summary of the REPL namespace.
2829
#
29-
# This target computes REPL language statistics.
30-
31-
stats-repl-lang: $(REPL_LANG_STATS)
32-
$(QUIET) $(MAKE_EXECUTABLE) $(REPL_LANG_STATS)
33-
$(QUIET) NODE_PATH="$(NODE_PATH)" $(REPL_LANG_STATS)
30+
# @example
31+
# make stats-repl
32+
#/
33+
stats-repl: $(REPL_STATS)
34+
$(QUIET) $(MAKE_EXECUTABLE) $(REPL_STATS)
35+
$(QUIET) NODE_PATH="$(NODE_PATH)" $(REPL_STATS)
3436

35-
.PHONY: stats-repl-lang
37+
.PHONY: stats-repl

0 commit comments

Comments
 (0)