Skip to content

Commit

Permalink
fix wf catalog build on creators + creators version bump (#13002)
Browse files Browse the repository at this point in the history
* fix wf catalog build on creators + creators version bump

* update extension docs with known issue from dependencies
  • Loading branch information
aalves08 authored Jan 7, 2025
1 parent 7acfdc7 commit bf91d22
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ jobs:
with:
registry_target: ghcr.io
registry_user: ${{ github.actor }}
tagged_release: ${{ github.ref_name }}
secrets:
registry_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion creators/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rancher/create-extension",
"description": "Rancher UI Extension generator",
"version": "3.0.6",
"version": "3.0.7",
"license": "Apache-2.0",
"author": "SUSE",
"packageManager": "[email protected]",
Expand Down
20 changes: 20 additions & 0 deletions docusaurus/docs/extensions/known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,23 @@ To resolve this add the following `resolution` to the root application's `packag
...
}
```

- Running `yarn install` might throw the following errors:
```
error @aws-sdk/[email protected]: The engine "node" is incompatible with this module. Expected version ">=18.0.0". Got "16.20.2"
error @aws-sdk/[email protected]: The engine "node" is incompatible with this module. Expected version ">=18.0.0". Got "16.20.2"
```

To resolve this add the following `resolutions` to the root application's `package.json`:
```
{
"name": "app-name",
"version": "0.1.0",
...
resolutions": {
"@aws-sdk/types": "3.714.0",
"@aws-sdk/util-locate-window": "3.693.0"
},
...
}
```

0 comments on commit bf91d22

Please sign in to comment.