-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix wf catalog build on creators + creators version bump (#13002)
* fix wf catalog build on creators + creators version bump * update extension docs with known issue from dependencies
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
}, | ||
... | ||
} | ||
``` |