Skip to content

Commit d72c9ac

Browse files
committed
update wrapper script
1 parent 043b0c0 commit d72c9ac

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

packages/cli/src/bin/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ switch (command) {
126126
case 'patch-compat-table': {
127127
const patchesPath = relative(process.cwd(), fileURLToPath(new URL('../../patches', import.meta.url)));
128128
console.warn(
129-
'This command is deprecated and will be removed in the future. Please apply scoping to the "compat" table and its subcomponents manually: https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/legacy-components-docs--docs#using-the-compat-v1-table-together-with-the-v2-table-in-one-application',
129+
'This command is deprecated and will be removed in the future. Please apply scoping to the "compat" table and its subcomponents manually: https://ui5.github.io/webcomponents-react/v2/?path=/docs/legacy-components-docs--docs#using-the-compat-v1-table-together-with-the-v2-table-in-one-application',
130130
);
131131
try {
132132
await $`patch-package --patch-dir ${patchesPath}`;

packages/cli/src/scripts/create-wrappers/AttributesRenderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class AttributesRenderer extends AbstractRenderer {
5050
if (sinceFilter(attribute._ui5since)) {
5151
parts.push(` *`);
5252
parts.push(
53-
` * **Note:** Available since [v${attribute._ui5since}](https://github.com/SAP/ui5-webcomponents/releases/tag/v${attribute._ui5since}) of **${context.packageName}**.`,
53+
` * **Note:** Available since [v${attribute._ui5since}](https://github.com/UI5/webcomponents/releases/tag/v${attribute._ui5since}) of **${context.packageName}**.`,
5454
);
5555
}
5656

packages/cli/src/scripts/create-wrappers/ComponentRenderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class ComponentRenderer extends AbstractRenderer {
7474
}
7575
if (sinceFilter(this.since)) {
7676
comment += ` *\n`;
77-
comment += ` * @since [${this.since}](https://github.com/SAP/ui5-webcomponents/releases/tag/v${this.since}) of __${context.packageName}__.\n`;
77+
comment += ` * @since [${this.since}](https://github.com/UI5/webcomponents/releases/tag/v${this.since}) of __${context.packageName}__.\n`;
7878
}
7979
if (this.isAbstract) {
8080
comment += ' * @abstract\n';

packages/cli/src/scripts/create-wrappers/DomRefRenderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class DomRefRenderer extends AbstractRenderer {
8989
if (sinceFilter(member._ui5since)) {
9090
descriptionParts.push(` *`);
9191
descriptionParts.push(
92-
` * **Note:** Available since [v${member._ui5since}](https://github.com/SAP/ui5-webcomponents/releases/tag/v${member._ui5since}) of **${context.packageName}**.`,
92+
` * **Note:** Available since [v${member._ui5since}](https://github.com/UI5/webcomponents/releases/tag/v${member._ui5since}) of **${context.packageName}**.`,
9393
);
9494
}
9595

packages/cli/src/scripts/create-wrappers/PropTypesRenderer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ export class PropTypesRenderer extends AbstractRenderer {
6161
' * __Note:__ When passing a custom React component to this prop, you have to make sure your component reads the `slot` prop and appends it to the most outer element of your component.',
6262
);
6363
descriptionParts.push(
64-
`* Learn more about it [here](https://sap.github.io/ui5-webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).`,
64+
`* Learn more about it [here](https://ui5.github.io/webcomponents-react/v2/?path=/docs/knowledge-base-handling-slots--docs).`,
6565
);
6666
}
6767

6868
if (sinceFilter(slot._ui5since)) {
6969
descriptionParts.push(` *`);
7070
descriptionParts.push(
71-
` * **Note:** Available since [v${slot._ui5since}](https://github.com/SAP/ui5-webcomponents/releases/tag/v${slot._ui5since}) of **${context.packageName}**.`,
71+
` * **Note:** Available since [v${slot._ui5since}](https://github.com/UI5/webcomponents/releases/tag/v${slot._ui5since}) of **${context.packageName}**.`,
7272
);
7373
}
7474

@@ -103,7 +103,7 @@ export class PropTypesRenderer extends AbstractRenderer {
103103
if (sinceFilter(event._ui5since)) {
104104
descriptionParts.push(` *`);
105105
descriptionParts.push(
106-
` * **Note:** Available since [v${event._ui5since}](https://github.com/SAP/ui5-webcomponents/releases/tag/v${event._ui5since}) of **${context.packageName}**.`,
106+
` * **Note:** Available since [v${event._ui5since}](https://github.com/UI5/webcomponents/releases/tag/v${event._ui5since}) of **${context.packageName}**.`,
107107
);
108108
}
109109
if (event.deprecated) {

0 commit comments

Comments
 (0)