Skip to content

Commit 9c4f04e

Browse files
committed
fixes
1 parent 1429d56 commit 9c4f04e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.PHONY: clean install-dev build publish-to-pypi lint type-check unit-tests unit-tests-cov \
2-
integration-tests format check-code build-api-reference run-docs
2+
integration-tests format check-code build-api-reference build-docs run-docs
33

44
# This is default for local testing, but GitHub workflows override it to a higher value in CI
55
INTEGRATION_TESTS_CONCURRENCY = 1
@@ -12,7 +12,7 @@ install-dev:
1212
uv run pre-commit install
1313

1414
build:
15-
uv build --no-cache
15+
uv build --no-cache --verbose
1616

1717
# APIFY_PYPI_TOKEN_CRAWLEE is expected to be set in the environment
1818
publish-to-pypi:
@@ -46,7 +46,7 @@ build-api-reference:
4646
cd website && uv run ./build_api_reference.sh
4747

4848
build-docs:
49-
cd website && corepack enable && yarn && uv run yarn build
49+
cd website && uv run npm clean-install && uv run npm run build
5050

5151
run-docs: build-api-reference
5252
cd website && uv run npm clean-install && uv run npm run start

0 commit comments

Comments
 (0)