create-better-t-stack 2.50.1-canary.9643d88e → 3.0.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/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { createBtsCli } from "./src-B0pvu6Z-.js";
2
+ import { createBtsCli } from "./src-Dm6abm1a.js";
3
3
 
4
4
  //#region src/cli.ts
5
5
  createBtsCli().run();
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
- import { builder, createBtsCli, docs, init, router, sponsors } from "./src-B0pvu6Z-.js";
2
+ import { builder, createBtsCli, docs, init, router, sponsors } from "./src-Dm6abm1a.js";
3
3
 
4
4
  export { builder, createBtsCli, docs, init, router, sponsors };
@@ -1388,7 +1388,7 @@ const getLatestCLIVersion = () => {
1388
1388
  */
1389
1389
  function isTelemetryEnabled() {
1390
1390
  const BTS_TELEMETRY_DISABLED = process.env.BTS_TELEMETRY_DISABLED;
1391
- const BTS_TELEMETRY = "0";
1391
+ const BTS_TELEMETRY = "1";
1392
1392
  if (BTS_TELEMETRY_DISABLED !== void 0) return BTS_TELEMETRY_DISABLED !== "1";
1393
1393
  if (BTS_TELEMETRY !== void 0) return BTS_TELEMETRY === "1";
1394
1394
  return true;
@@ -1396,8 +1396,8 @@ function isTelemetryEnabled() {
1396
1396
 
1397
1397
  //#endregion
1398
1398
  //#region src/utils/analytics.ts
1399
- const POSTHOG_API_KEY = "random";
1400
- const POSTHOG_HOST = "random";
1399
+ const POSTHOG_API_KEY = "phc_8ZUxEwwfKMajJLvxz1daGd931dYbQrwKNficBmsdIrs";
1400
+ const POSTHOG_HOST = "https://us.i.posthog.com";
1401
1401
  function generateSessionId() {
1402
1402
  const rand = Math.random().toString(36).slice(2);
1403
1403
  return `cli_${Date.now().toString(36)}${rand}`;
@@ -4009,7 +4009,6 @@ async function setupCatalogs(projectDir, options) {
4009
4009
  const packagePaths = [
4010
4010
  "apps/server",
4011
4011
  "apps/web",
4012
- "apps/native",
4013
4012
  "packages/api",
4014
4013
  "packages/db",
4015
4014
  "packages/auth",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.50.1-canary.9643d88e",
3
+ "version": "3.0.0",
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",
@@ -1,6 +1,6 @@
1
1
  [install]
2
2
  {{#if (or (includes frontend "nuxt") (includes frontend "native-nativewind") (includes frontend "native-unistyles"))}}
3
- # linker = "isolated" # Commented out for Nuxt compatibility
3
+ # linker = "isolated" # having issues with Nuxt and NativeWind/Unistyles
4
4
  {{else}}
5
5
  linker = "isolated"
6
6
  {{/if}}