Skip to content

Commit 5b1f573

Browse files
committed
refactor(*)
1 parent 7809345 commit 5b1f573

34 files changed

+237
-270
lines changed
File renamed without changes.

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
12

2-
blog-markdown-generator/package-lock.json
3-
blog-markdown-generator/package-lock.json
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
32+
# env files (can opt-in for committing if needed)
33+
.env*
34+
35+
# vercel
36+
.vercel
37+
38+
# typescript
39+
*.tsbuildinfo
40+
next-env.d.ts

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

blog-markdown-generator/.gitignore

Lines changed: 0 additions & 40 deletions
This file was deleted.

blog-markdown-generator/README.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

blog-markdown-generator/components.json renamed to components.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"tsx": true,
66
"tailwind": {
77
"config": "tailwind.config.ts",
8-
"css": "app/globals.css",
8+
"css": "src/app/globals.css",
99
"baseColor": "neutral",
1010
"cssVariables": true,
1111
"prefix": ""

blog-markdown-generator/next.config.ts renamed to next.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import type { NextConfig } from "next";
33
const nextConfig: NextConfig = {
44
/* config options here */
55
output: 'export',
6-
basePath: '/Gist-Blog-Generator',
76
images: {
87
unoptimized: true
98
}

blog-markdown-generator/package.json renamed to package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"class-variance-authority": "^0.7.0",
1919
"clsx": "^2.1.1",
2020
"lucide-react": "^0.454.0",
21-
"next": "15.1.2",
22-
"react": "19.0.0-rc-66855b96-20241106",
23-
"react-dom": "19.0.0-rc-66855b96-20241106",
21+
"next": "latest",
22+
"react": "latest",
23+
"react-dom": "latest",
2424
"tailwind-merge": "^2.5.4",
2525
"tailwindcss-animate": "^1.0.7"
2626
},

0 commit comments

Comments
 (0)