@zalify/cli 0.22.0 → 0.22.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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -20444,6 +20444,9 @@ async function post(auth, path9, payload) {
20444
20444
  return json;
20445
20445
  }
20446
20446
  function renderPlan(result, folders) {
20447
+ for (const n of result.notes ?? []) {
20448
+ console.log(`· ${n.file} — ${n.message}`);
20449
+ }
20447
20450
  for (const f of result.issues) {
20448
20451
  console.log(`✗ ${f.file}`);
20449
20452
  for (const i of f.issues)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zalify/cli",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "Zalify CLI - command-line interface for Zalify",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",