upgrade-miniapp
- Upgrades a MiniApp to the currently activated platform version
ern upgrade-miniapp
Options
--version/-v <version>
- Upgrade the MiniApp to a specific platform version
--manifestId <manifestId>
- Id of the override Manifest entry to retrieve dependencies versions from (see override Manifest for more info)
- Based on your preference, you can select which package manager (
npm
oryarn
) to be used by this command when updating the packages versions. This can be done by adding or updatingpackageManager
field in theern
object kept in the MiniApp package.json. For example, to usenpm
. If this field is missing from configuration,yarn
will be used overnpm
if it is installed on the workstation.
{
"ern": {
"packageManager": "npm"
}
}
Last modified 3yr ago