create-better-t-stack 2.14.2 → 2.14.4

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/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3334,7 +3334,8 @@ async function trackProjectCreation(config) {
3334
3334
  flushAt: 1,
3335
3335
  flushInterval: 0,
3336
3336
  privacyMode: true,
3337
- disableGeoip: true
3337
+ disableGeoip: true,
3338
+ disabled: false
3338
3339
  });
3339
3340
  try {
3340
3341
  const sessionId = `cli_${crypto.randomUUID().replace(/-/g, "")}`;
@@ -3807,9 +3808,9 @@ async function main() {
3807
3808
  log.message("");
3808
3809
  } else config = await gatherConfig(flagConfig, finalBaseName, finalResolvedPath, finalPathInput);
3809
3810
  await createProject(config);
3810
- await trackProjectCreation(config);
3811
3811
  const reproducibleCommand = generateReproducibleCommand(config);
3812
3812
  log.success(pc.blue(`You can reproduce this setup with the following command:\n${reproducibleCommand}`));
3813
+ await trackProjectCreation(config);
3813
3814
  const elapsedTimeInSeconds = ((Date.now() - startTime) / 1e3).toFixed(2);
3814
3815
  outro(pc.magenta(`Project created successfully in ${pc.bold(elapsedTimeInSeconds)} seconds!`));
3815
3816
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.14.2",
3
+ "version": "2.14.4",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",