create-better-fullstack 1.1.3 → 1.1.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.
- package/dist/cli.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{src-w8HBABQo.mjs → src-hrWVF5Yi.mjs} +10 -1
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as create, c as docs, d as sponsors, i as builder, l as generateVirtualProject, n as TEMPLATE_COUNT, o as createBtsCli, r as VirtualFileSystem, s as createVirtual, t as EMBEDDED_TEMPLATES, u as router } from "./src-
|
|
2
|
+
import { a as create, c as docs, d as sponsors, i as builder, l as generateVirtualProject, n as TEMPLATE_COUNT, o as createBtsCli, r as VirtualFileSystem, s as createVirtual, t as EMBEDDED_TEMPLATES, u as router } from "./src-hrWVF5Yi.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, router, sponsors };
|
|
@@ -3108,7 +3108,16 @@ function isTelemetryEnabled() {
|
|
|
3108
3108
|
|
|
3109
3109
|
//#endregion
|
|
3110
3110
|
//#region src/utils/analytics.ts
|
|
3111
|
-
|
|
3111
|
+
const CONVEX_INGEST_URL = "https://third-antelope-510.convex.site/track";
|
|
3112
|
+
async function sendConvexEvent(payload) {
|
|
3113
|
+
try {
|
|
3114
|
+
await fetch(CONVEX_INGEST_URL, {
|
|
3115
|
+
method: "POST",
|
|
3116
|
+
headers: { "Content-Type": "application/json" },
|
|
3117
|
+
body: JSON.stringify(payload)
|
|
3118
|
+
});
|
|
3119
|
+
} catch {}
|
|
3120
|
+
}
|
|
3112
3121
|
async function trackProjectCreation(config, disableAnalytics = false) {
|
|
3113
3122
|
if (!isTelemetryEnabled() || disableAnalytics) return;
|
|
3114
3123
|
const { projectName: _projectName, projectDir: _projectDir, relativePath: _relativePath, ...safeConfig } = config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-fullstack",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A CLI-first toolkit for building Full Stack applications. Skip the configuration. Ship the code.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-auth",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
"prepublishOnly": "npm run build"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@better-fullstack/template-generator": "^1.1.
|
|
76
|
-
"@better-fullstack/types": "^1.1.
|
|
75
|
+
"@better-fullstack/template-generator": "^1.1.4",
|
|
76
|
+
"@better-fullstack/types": "^1.1.4",
|
|
77
77
|
"@clack/core": "^0.5.0",
|
|
78
78
|
"@clack/prompts": "^1.0.0-alpha.8",
|
|
79
79
|
"@orpc/server": "^1.13.0",
|