@canva/cli 1.12.0 → 1.14.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 +31 -0
- package/README.md +11 -0
- package/cli.js +368 -368
- package/lib/cjs/index.cjs +3 -3
- package/lib/esm/index.mjs +4 -4
- package/package.json +3 -3
- package/templates/base/package.json +6 -6
- package/templates/base/tsconfig.json +0 -1
- package/templates/base/webpack.config.ts +0 -6
- package/templates/dam/package.json +6 -6
- package/templates/dam/tsconfig.json +0 -1
- package/templates/dam/webpack.config.ts +0 -6
- package/templates/data_connector/package.json +7 -7
- package/templates/data_connector/tsconfig.json +0 -1
- package/templates/data_connector/webpack.config.ts +0 -6
- package/templates/gen_ai/package.json +7 -7
- package/templates/gen_ai/tsconfig.json +0 -1
- package/templates/gen_ai/webpack.config.ts +0 -6
- package/templates/hello_world/package.json +6 -6
- package/templates/hello_world/tsconfig.json +0 -1
- package/templates/hello_world/webpack.config.ts +0 -6
- package/templates/mls/package.json +7 -7
- package/templates/mls/tsconfig.json +0 -1
- package/templates/mls/webpack.config.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.14.0 - 2026-01-14
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Removed `asset` import alias for generated templates since it's not used in any of our examples.
|
|
8
|
+
- Dependencies audit bringing modules up to date:
|
|
9
|
+
|
|
10
|
+
```text
|
|
11
|
+
@modelcontextprotocol/sdk 1.17.4 -> 1.25.2
|
|
12
|
+
systeminformation 5.27.8 -> 5.27.14
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## v1.13.0 - 2026-01-07
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Added `apps link` command to connect a project directory to a Canva app by setting the required ENV variables.
|
|
20
|
+
- Update doctor command to also check for newly released `@canva/app-middleware` package.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Cleanup unnecessary `utils` alias in the generated template webpack config.
|
|
25
|
+
- Upgraded `@canva/user` to `2.1.2`.
|
|
26
|
+
- Upgraded `@canva/app-ui-kit` to `5.4.0`.
|
|
27
|
+
- Upgraded `react` and `react-dom` to `19.2.3`.
|
|
28
|
+
- Upgraded `@canva/asset` to `2.3.0`.
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- Fixed `canva apps list` command not loading any more than 25 apps.
|
|
33
|
+
|
|
3
34
|
## v1.12.0 - 2025-12-15
|
|
4
35
|
|
|
5
36
|
### Added
|
package/README.md
CHANGED
|
@@ -374,6 +374,17 @@ Report on the status and validity of the [canva-app.json](https://www.canva.dev/
|
|
|
374
374
|
canva apps config status
|
|
375
375
|
```
|
|
376
376
|
|
|
377
|
+
##### link
|
|
378
|
+
|
|
379
|
+
Link your local project to an existing Canva app by updating the .env file
|
|
380
|
+
|
|
381
|
+
```shell
|
|
382
|
+
canva apps link
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
- **Flags**:
|
|
386
|
+
- `--appId`: Specifies an App ID to select.
|
|
387
|
+
|
|
377
388
|
#### logout
|
|
378
389
|
|
|
379
390
|
Log out and revoke Canva CLI access.
|