Skip to content

Commit b6085ca

Browse files
committed
build, doc: move to redesign
1 parent 6964b53 commit b6085ca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ VERSION=v$(RAWVER)
819819

820820
.PHONY: doc-only
821821
.NOTPARALLEL: doc-only
822-
doc-only: $(apidoc_dirs) $(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json out/doc/apilinks.json ## Builds the docs with the local or the global Node.js binary.
822+
doc-only: $(apidoc_dirs) $(apidocs_html) $(apidocs_json) out/doc/api/all.json out/doc/apilinks.json ## Builds the docs with the local or the global Node.js binary.
823823

824824
.PHONY: doc
825825
doc: $(NODE_EXE) doc-only ## Build Node.js, and then build the documentation with the new binary.
@@ -838,16 +838,16 @@ out/doc/api: doc/api
838838
# Using grouped targets (&:) so Make knows one command produces all outputs
839839
ifeq ($(OSTYPE),aix)
840840
# TODO(@nodejs/web-infra): AIX is currently hanging during HTML minification
841-
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
841+
$(apidocs_html) $(apidocs_json) out/doc/api/all.json:
842842
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
843843
else
844-
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
844+
$(apidocs_html) $(apidocs_json) out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
845845
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \
846846
echo "Skipping $@ (no crypto and/or no ICU)"; \
847847
else \
848848
$(call available-node, \
849849
$(DOC_KIT) generate \
850-
-t legacy-html-all \
850+
-t web \
851851
-t legacy-json-all \
852852
-i doc/api/*.md \
853853
--ignore $(skip_apidoc_files) \

vcbuild.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ robocopy /e doc\api %config%\doc\api
648648

649649
%doc_kit_exe% ^
650650
generate ^
651-
-t legacy-html-all legacy-json-all api-links ^
651+
-t web legacy-json-all api-links ^
652652
-i doc/api/*.md ^
653653
-i lib/*.js ^
654654
-o %config%/doc/api/ ^

0 commit comments

Comments
 (0)