We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f978479 commit 4de6454Copy full SHA for 4de6454
apps/cli/package.json
@@ -88,4 +88,4 @@
88
"typescript": "^5.9.2",
89
"vitest": "^3.2.4"
90
}
91
-}
+}
apps/web/src/app/(home)/_components/npm-package.tsx
@@ -9,7 +9,7 @@ const NpmPackage = () => {
9
const getLatestVersion = async () => {
10
try {
11
const res = await fetch(
12
- "https://registry.npmjs.org/create-better-t-stack/latest",
+ "https://api.github.com/repos/AmanVarshney01/create-better-t-stack/releases",
13
);
14
if (!res.ok) throw new Error("Failed to fetch version");
15
const data = await res.json();
@@ -31,4 +31,4 @@ const NpmPackage = () => {
31
32
};
33
34
-export default NpmPackage;
+export default NpmPackage;
0 commit comments