Skip to content

Commit fa13fb0

Browse files
committed
fix: Address package move within the code
1 parent 87f4bf5 commit fa13fb0

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/deploy-vitepress-docs.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
- name: Install dependencies
4444
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
4545
- name: Install documentation dependencies
46-
working-directory: packages/documentation
46+
working-directory: internal/documentation
4747
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
4848
- name: Fetch gh-pages branch
4949
run: git fetch origin gh-pages --depth=1
5050
- name: generate CLI doc
51-
working-directory: packages/documentation
51+
working-directory: internal/documentation
5252
run: npm run generate-cli-doc
5353
- name: Build vitepress build
54-
working-directory: packages/documentation
54+
working-directory: internal/documentation
5555
run: |
5656
# The base output
5757
npm run build:vitepress -- --base="/${{ github.event.repository.name }}/${DOC_VERSION}/"
@@ -60,7 +60,7 @@ jobs:
6060
npm run build:vitepress -- --base="/${{ github.event.repository.name }}/${DOC_ALIAS}/" --outDir="dist-${DOC_ALIAS}"
6161
npm run build:assets -- ./dist-${DOC_ALIAS}
6262
- name: Build jsdoc
63-
working-directory: packages/documentation
63+
working-directory: internal/documentation
6464
run: npm run jsdoc-generate
6565
# TODO: Skip for now deployment of the schema until we do a Schema Version 5 release
6666
# - name: Build Schema
@@ -81,16 +81,16 @@ jobs:
8181
rm -rf ./gh-pages/${DOC_ALIAS}
8282
8383
# Main version route
84-
cp -R ./packages/documentation/dist ./gh-pages/${DOC_VERSION}/
84+
cp -R ./internal/documentation/dist ./gh-pages/${DOC_VERSION}/
8585
8686
# Alias route. E.g., next, latest, stable, etc.
8787
# For vitepress must be a copy with different config, not a symlink
88-
cp -R ./packages/documentation/dist-${DOC_ALIAS} ./gh-pages/${DOC_ALIAS}/
88+
cp -R ./internal/documentation/dist-${DOC_ALIAS} ./gh-pages/${DOC_ALIAS}/
8989
# Symlink the api docs to avoid duplication
9090
ln -s ../${DOC_VERSION}/api ./gh-pages/${DOC_ALIAS}/api
9191
9292
# TODO: Enable when v5 release is done
93-
# cp ./packages/documentation/scripts/resources/custom404.html ./gh-pages/404.html
93+
# cp ./internal/documentation/scripts/resources/custom404.html ./gh-pages/404.html
9494
- name: Publish Docs
9595
run: |
9696
cd ./gh-pages

.github/workflows/github-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: npm run unit
4141

4242
- name: Generate JSDoc documentation
43-
working-directory: packages/documentation
43+
working-directory: internal/documentation
4444
run: |
4545
npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
4646
npm run jsdoc-generate
@@ -49,11 +49,11 @@ jobs:
4949
run: npm run schema-generate
5050

5151
- name: Generate CLI documentation
52-
working-directory: packages/documentation
52+
working-directory: internal/documentation
5353
run: npm run generate-cli-doc
5454

5555
- name: Check shrinkwrap integrity
56-
working-directory: packages/shrinkwrap-extractor
56+
working-directory: internal/shrinkwrap-extractor
5757
run: |
5858
npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
5959
npm run test

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
npm ci
7777
7878
# Build the extractor
79-
cd ./packages/shrinkwrap-extractor
79+
cd ./internal/shrinkwrap-extractor
8080
npm ci
8181
8282
# Generate npm-shrinkwrap.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ UI5 CLI consists of multiple packages managed within this monorepo:
4343
- **packages/logger**: Internal logging module
4444

4545
**Usage Overview** *(arrows indicate dependencies)*
46-
![Module Overview](./packages/documentation/docs/images/Module_overview.png)
46+
![Module Overview](./internal/documentation/docs/images/Module_overview.png)
4747

4848
## Contributing
4949

REUSE.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SPDX-FileCopyrightText = "2025 SAP SE or an SAP affiliate company and OpenUI5 co
2929
SPDX-License-Identifier = "Apache-2.0"
3030

3131
[[annotations]]
32-
path = "packages/documentation/.vitepress/**"
32+
path = "internal/documentation/.vitepress/**"
3333
precedence = "aggregate"
3434
SPDX-FileCopyrightText = ["2019-present, Konrad Kost, Holger Schäfer, Yuxi (Evan) and VitePress contributors"]
3535
SPDX-License-Identifier = "MIT"

internal/documentation/scripts/generateCliDoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function generateDoc() {
194194
console.error(`Failed to generate docs/pages/CLI.md: ${err.message}.`);
195195
throw err;
196196
}
197-
console.log("Generated packages/documentation/docs/pages/CLI.md");
197+
console.log("Generated internal/documentation/docs/pages/CLI.md");
198198
}
199199

200200
function splitString(temp) {

0 commit comments

Comments
 (0)