@canva/cli 1.5.2 → 1.6.0
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.
- package/CHANGELOG.md +6 -0
- package/README.md +4 -0
- package/cli.js +252 -252
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -320,11 +320,15 @@ canva apps migrate <migrationName>
|
|
|
320
320
|
|
|
321
321
|
Available migrations:
|
|
322
322
|
- `"apps-sdk-v1-v2"`: Migrates apps using the Apps SDK v1 packages to v2.
|
|
323
|
+
- `"app-ui-kit-v5"`: Migrates apps using App UI Kit v4 to v5.
|
|
324
|
+
- `"design-editor-intent"`: Migrates from direct render pattern to design intents pattern.
|
|
323
325
|
|
|
324
326
|
- **Examples**:
|
|
325
327
|
|
|
326
328
|
```shell
|
|
327
329
|
canva apps migrate apps-sdk-v1-v2
|
|
330
|
+
canva apps migrate app-ui-kit-v5
|
|
331
|
+
canva apps migrate design-editor-intent
|
|
328
332
|
canva apps migrate apps-sdk-v1-v2 --debug
|
|
329
333
|
```
|
|
330
334
|
|