@capacitor/cli 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/tasks/migrate.js
CHANGED
|
@@ -47,8 +47,8 @@ const plugins = [
|
|
|
47
47
|
'@capacitor/text-zoom',
|
|
48
48
|
'@capacitor/toast',
|
|
49
49
|
];
|
|
50
|
-
const coreVersion = '5.0.0';
|
|
51
|
-
const pluginVersion = '5.0.0';
|
|
50
|
+
const coreVersion = '^5.0.0';
|
|
51
|
+
const pluginVersion = '^5.0.0';
|
|
52
52
|
const gradleVersion = '8.0.2';
|
|
53
53
|
async function migrateCommand(config, noprompt, packagemanager) {
|
|
54
54
|
if (config === null) {
|
|
@@ -287,9 +287,8 @@ async function writeBreakingChanges() {
|
|
|
287
287
|
broken.push(lib);
|
|
288
288
|
}
|
|
289
289
|
}
|
|
290
|
-
// TODO - remove "next" from the url once capacitor 5 is final
|
|
291
290
|
if (broken.length > 0) {
|
|
292
|
-
log_1.logger.info(`IMPORTANT: Review https://capacitorjs.com/docs/
|
|
291
|
+
log_1.logger.info(`IMPORTANT: Review https://capacitorjs.com/docs/updating/5-0#plugins for breaking changes in these plugins that you use: ${broken.join(', ')}.`);
|
|
293
292
|
}
|
|
294
293
|
}
|
|
295
294
|
async function getAndroidVariablesAndClasspaths(config) {
|
package/package.json
CHANGED