create-better-t-stack 2.18.2 → 2.18.3

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 +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -3847,7 +3847,7 @@ const router = t.router({
3847
3847
  }
3848
3848
  }),
3849
3849
  docs: t.procedure.meta({ description: "Open Better-T Stack documentation" }).mutation(async () => {
3850
- const DOCS_URL = "https://better-t-stack.amanv.dev/docs";
3850
+ const DOCS_URL = "https://better-t-stack.dev/docs";
3851
3851
  try {
3852
3852
  await openUrl(DOCS_URL);
3853
3853
  log.success(pc.blue("Opened docs in your default browser."));
@@ -3856,7 +3856,7 @@ const router = t.router({
3856
3856
  }
3857
3857
  }),
3858
3858
  builder: t.procedure.meta({ description: "Open the web-based stack builder" }).mutation(async () => {
3859
- const BUILDER_URL = "https://better-t-stack.amanv.dev/new";
3859
+ const BUILDER_URL = "https://better-t-stack.dev/new";
3860
3860
  try {
3861
3861
  await openUrl(BUILDER_URL);
3862
3862
  log.success(pc.blue("Opened builder in your default browser."));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "2.18.2",
3
+ "version": "2.18.3",
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",
@@ -43,7 +43,7 @@
43
43
  "url": "git+https://github.com/AmanVarshney01/create-better-t-stack.git",
44
44
  "directory": "apps/cli"
45
45
  },
46
- "homepage": "https://better-t-stack.amanv.dev/",
46
+ "homepage": "https://better-t-stack.dev/",
47
47
  "scripts": {
48
48
  "build": "tsdown",
49
49
  "dev": "tsdown --watch",