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.
package/dist/commands/apply.js
CHANGED
|
@@ -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
|
-
|
|
291
|
-
log.
|
|
292
|
-
log.info(
|
|
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
|
/**
|
package/dist/services/posthog.js
CHANGED
|
@@ -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:
|
|
82
|
+
properties: eventProperties
|
|
83
83
|
});
|
|
84
84
|
if (debug)
|
|
85
85
|
ux.stdout('Event tracked successfully');
|
package/oclif.manifest.json
CHANGED