File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ Package.resolved
1212.serverless
1313.vscode
1414.env
15- Makefile
1615** /temp
1716node_modules
1817
Original file line number Diff line number Diff line change 1+ # Makefile for library
2+
3+ format :
4+ swift format format --parallel --recursive --in-place ./Package.swift Examples/ Sources/ Tests/
5+
6+ preview-docs :
7+ # xcrun docc preview Sources/BedrockService/Docs.docc --output-path docc-output
8+ swift package --disable-sandbox preview-documentation --target BedrockService
9+
10+ # https://build-on-aws.github.io/swift-bedrock-library/documentation/bedrockservice/
11+ generate-docs :
12+ touch .nojekyll
13+ swift package \
14+ --allow-writing-to-directory ./docs \
15+ generate-documentation \
16+ --target BedrockService \
17+ --disable-indexing \
18+ --transform-for-static-hosting \
19+ --hosting-base-path swift-bedrock-library \
20+ --output-path ./docs
You can’t perform that action at this time.
0 commit comments