fix: updated gitignore, gitattributes, moved public to sim/

This commit is contained in:
Waleed Latif
2025-03-13 15:08:35 -07:00
parent 8bd26159a7
commit 2c468fa91d
13 changed files with 13 additions and 37 deletions

3
.gitattributes vendored
View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f1f58fd32af1d9afe3c8d06ebe19deef3656ab96408bbdfb46cf45e8eeb0bc3
size 38

15
.gitignore vendored
View File

@@ -1,7 +1,8 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies # dependencies
/node_modules */node_modules
docs/node_modules
/packages/**/node_modules /packages/**/node_modules
/.pnp /.pnp
.pnp.* .pnp.*
@@ -16,7 +17,12 @@
# next.js # next.js
/.next/ /.next/
/out/ sim/.next/
sim/out/
sim/build
docs/.next/
docs/out/
docs/build
# production # production
/build /build
@@ -52,3 +58,8 @@ next-env.d.ts
# cursorrules # cursorrules
.cursorrules .cursorrules
# docs
docs/.source
docs/.contentlayer
docs/.content-collections

28
docs/.gitignore vendored
View File

@@ -1,28 +0,0 @@
# deps
/node_modules
# generated content
.contentlayer
.content-collections
.source
# test & build
/coverage
/.next/
/out/
/build
*.tsbuildinfo
# misc
.DS_Store
*.pem
/.pnp
.pnp.js
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# others
.env*.local
.vercel
next-env.d.ts

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 443 B

After

Width:  |  Height:  |  Size: 443 B

View File

Before

Width:  |  Height:  |  Size: 897 B

After

Width:  |  Height:  |  Size: 897 B

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 MiB

After

Width:  |  Height:  |  Size: 5.8 MiB

View File

@@ -30,10 +30,6 @@
"@/db/*": ["./app/db/*"], "@/db/*": ["./app/db/*"],
"@/executor": ["./app/executor"], "@/executor": ["./app/executor"],
"@/executor/*": ["./app/executor/*"], "@/executor/*": ["./app/executor/*"],
// "@/hooks": ["./app/hooks"],
// "@/hooks/*": ["./app/hooks/*"],
// "@/middleware": ["./app/middleware"],
// "@/middleware/*": ["./app/middleware/*"],
}, },
"allowJs": true, "allowJs": true,
"noEmit": true, "noEmit": true,