Skip to content

Commit

Permalink
fix(cli): Update plugins with breaking changes (#7148)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Dec 21, 2023
1 parent 7937d0e commit b8c2a92
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cli/src/tasks/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,10 @@ async function installLatestLibs(
async function writeBreakingChanges() {
const breaking = [
'@capacitor/camera',
'@capacitor/device',
'@capacitor/filesystem',
'@capacitor/geolocation',
'@capacitor/google-maps',
'@capacitor/local-notifications',
'@capacitor/push-notifications',
];
const broken = [];
for (const lib of breaking) {
Expand All @@ -452,7 +453,7 @@ async function writeBreakingChanges() {
}
if (broken.length > 0) {
logger.info(
`IMPORTANT: Review https://capacitorjs.com/docs/updating/5-0#plugins for breaking changes in these plugins that you use: ${broken.join(
`IMPORTANT: Review https://capacitorjs.com/docs/next/updating/6-0#plugins for breaking changes in these plugins that you use: ${broken.join(
', ',
)}.`,
);
Expand Down

0 comments on commit b8c2a92

Please sign in to comment.