directus-template-cli 0.7.0 → 0.7.2

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.
@@ -287,9 +287,10 @@ export default class ApplyCommand extends BaseCommand {
287
287
  }
288
288
  ux.stdout(SEPARATOR);
289
289
  ux.stdout('Template applied successfully.');
290
- log.warn(BSL_LICENSE_HEADLINE);
291
- log.info(BSL_LICENSE_TEXT);
292
- log.info(BSL_LICENSE_CTA);
290
+ // Hide BSL license info if running programatically for now
291
+ // log.warn(BSL_LICENSE_HEADLINE)
292
+ // log.info(BSL_LICENSE_TEXT)
293
+ // log.info(BSL_LICENSE_CTA)
293
294
  // ux.exit(0)
294
295
  }
295
296
  /**
@@ -79,7 +79,7 @@ export function track({ lifecycle, distinctId, command, flags, runId, message, c
79
79
  phClient.capture({
80
80
  distinctId,
81
81
  event: `directus_template_cli.${command}.${lifecycle}`,
82
- properties: { eventProperties }
82
+ properties: eventProperties
83
83
  });
84
84
  if (debug)
85
85
  ux.stdout('Event tracked successfully');
@@ -395,5 +395,5 @@
395
395
  ]
396
396
  }
397
397
  },
398
- "version": "0.7.0"
398
+ "version": "0.7.2"
399
399
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directus-template-cli",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "CLI Utility for applying templates to a Directus instance.",
5
5
  "author": "bryantgillespie @bryantgillespie",
6
6
  "type": "module",