We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed4cb69 commit 19c19d1Copy full SHA for 19c19d1
tools/make/lib/ls/pkgs/types.mk
@@ -35,3 +35,12 @@ list-pkgs-types: $(LIST_PACKAGE_TYPES) $(NODE_MODULES)
35
$(QUIET) NODE_PATH="$(NODE_PATH)" $(NODE) $(LIST_PACKAGE_TYPES) $(LIST_PACKAGE_TYPES_FLAGS) $(SRC_DIR)
36
37
.PHONY: list-pkgs-types
38
+
39
+# List all packages without TypeScript declarations.
40
+#
41
+# This target prints a newline-delimited list of all packages without TypeScript declarations.
42
43
+list-pkgs-without-types:
44
+ $(QUIET) comm -23 <($(MAKE) -f $(this_file) list-lib-pkgs | sort) <($(MAKE) -f $(this_file) list-pkgs-types | sort)
45
46
+.PHONY: list-pkgs-without-types
0 commit comments