create-better-t-stack 3.2.23-canary.b8d62867 → 3.3.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 +1 -1
- package/dist/index.js +1 -1
- package/dist/{src-VoUvj8ZF.js → src-82W1Q-C5.js} +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as router, i as init, n as createBtsCli, o as sponsors, r as docs, t as builder } from "./src-
|
|
2
|
+
import { a as router, i as init, n as createBtsCli, o as sponsors, r as docs, t as builder } from "./src-82W1Q-C5.js";
|
|
3
3
|
|
|
4
4
|
export { builder, createBtsCli, docs, init, router, sponsors };
|
|
@@ -1387,7 +1387,7 @@ const getLatestCLIVersion = () => {
|
|
|
1387
1387
|
*/
|
|
1388
1388
|
function isTelemetryEnabled() {
|
|
1389
1389
|
const BTS_TELEMETRY_DISABLED = process.env.BTS_TELEMETRY_DISABLED;
|
|
1390
|
-
const BTS_TELEMETRY = "
|
|
1390
|
+
const BTS_TELEMETRY = "1";
|
|
1391
1391
|
if (BTS_TELEMETRY_DISABLED !== void 0) return BTS_TELEMETRY_DISABLED !== "1";
|
|
1392
1392
|
if (BTS_TELEMETRY !== void 0) return BTS_TELEMETRY === "1";
|
|
1393
1393
|
return true;
|
|
@@ -1395,8 +1395,8 @@ function isTelemetryEnabled() {
|
|
|
1395
1395
|
|
|
1396
1396
|
//#endregion
|
|
1397
1397
|
//#region src/utils/analytics.ts
|
|
1398
|
-
const POSTHOG_API_KEY = "
|
|
1399
|
-
const POSTHOG_HOST = "
|
|
1398
|
+
const POSTHOG_API_KEY = "phc_8ZUxEwwfKMajJLvxz1daGd931dYbQrwKNficBmsdIrs";
|
|
1399
|
+
const POSTHOG_HOST = "https://us.i.posthog.com";
|
|
1400
1400
|
function generateSessionId() {
|
|
1401
1401
|
const rand = Math.random().toString(36).slice(2);
|
|
1402
1402
|
return `cli_${Date.now().toString(36)}${rand}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.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",
|