@canva/cli 2.1.0 → 2.3.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 +20 -0
- package/THIRD_PARTY_LICENSES +77 -1
- package/cli.js +631 -624
- package/lib/cjs/index.cjs +6 -6
- package/lib/esm/index.mjs +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v2.3.0 - 2026-06-10
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Show a one-line description for each app template when running `canva apps create`.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fixed `canva apps doctor` crashing on dependencies with file references or non-specific versions.
|
|
12
|
+
|
|
13
|
+
## v2.2.0 - 2026-05-27
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Added anonymized telemetry to track CLI command usage and outcomes to help improve product reliability
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Upgraded `mobx` to `6.15.1`.
|
|
22
|
+
|
|
3
23
|
## v2.1.0 - 2026-05-20
|
|
4
24
|
|
|
5
25
|
### Added
|
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -338,6 +338,70 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
338
338
|
|
|
339
339
|
** @segment/ajv-human-errors@2.15.0 -- MIT
|
|
340
340
|
|
|
341
|
+
** @snowplow/node-tracker@4.6.9 -- BSD-3-Clause
|
|
342
|
+
|
|
343
|
+
BSD 3-Clause License
|
|
344
|
+
|
|
345
|
+
Copyright (c) 2022 Snowplow Analytics Ltd
|
|
346
|
+
All rights reserved.
|
|
347
|
+
|
|
348
|
+
Redistribution and use in source and binary forms, with or without
|
|
349
|
+
modification, are permitted provided that the following conditions are met:
|
|
350
|
+
|
|
351
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
352
|
+
list of conditions and the following disclaimer.
|
|
353
|
+
|
|
354
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
355
|
+
this list of conditions and the following disclaimer in the documentation
|
|
356
|
+
and/or other materials provided with the distribution.
|
|
357
|
+
|
|
358
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
359
|
+
contributors may be used to endorse or promote products derived from
|
|
360
|
+
this software without specific prior written permission.
|
|
361
|
+
|
|
362
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
363
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
364
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
365
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
366
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
367
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
368
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
369
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
370
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
371
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
372
|
+
|
|
373
|
+
** @snowplow/tracker-core@4.6.9 -- BSD-3-Clause
|
|
374
|
+
|
|
375
|
+
BSD 3-Clause License
|
|
376
|
+
|
|
377
|
+
Copyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang
|
|
378
|
+
All rights reserved.
|
|
379
|
+
|
|
380
|
+
Redistribution and use in source and binary forms, with or without
|
|
381
|
+
modification, are permitted provided that the following conditions are met:
|
|
382
|
+
|
|
383
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
384
|
+
list of conditions and the following disclaimer.
|
|
385
|
+
|
|
386
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
387
|
+
this list of conditions and the following disclaimer in the documentation
|
|
388
|
+
and/or other materials provided with the distribution.
|
|
389
|
+
|
|
390
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
391
|
+
contributors may be used to endorse or promote products derived from
|
|
392
|
+
this software without specific prior written permission.
|
|
393
|
+
|
|
394
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
395
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
396
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
397
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
398
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
399
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
400
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
401
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
402
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
403
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
404
|
+
|
|
341
405
|
** @t3-oss/env-core@0.13.8 -- MIT
|
|
342
406
|
|
|
343
407
|
** ajv@8.18.0 -- MIT
|
|
@@ -1689,7 +1753,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
1689
1753
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1690
1754
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1691
1755
|
|
|
1692
|
-
** mobx@6.
|
|
1756
|
+
** mobx@6.15.1 -- MIT
|
|
1693
1757
|
|
|
1694
1758
|
The MIT License (MIT)
|
|
1695
1759
|
|
|
@@ -2425,6 +2489,18 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
2425
2489
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2426
2490
|
SOFTWARE.
|
|
2427
2491
|
|
|
2492
|
+
** uuid@10.0.0 -- MIT
|
|
2493
|
+
|
|
2494
|
+
The MIT License (MIT)
|
|
2495
|
+
|
|
2496
|
+
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
2497
|
+
|
|
2498
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
2499
|
+
|
|
2500
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2501
|
+
|
|
2502
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2503
|
+
|
|
2428
2504
|
** when-exit@2.1.5 -- MIT
|
|
2429
2505
|
|
|
2430
2506
|
The MIT License (MIT)
|