chore: fix .gitignore and stop tracking build artifacts
The .gitignore previously contained the literal echo command instead of its output, so appro-admin.zip slipped past it. Rewrite it properly and untrack the build zip and tsconfig.tsbuildinfo (kept on disk, ignored going forward). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+8
-3
@@ -1,10 +1,12 @@
|
|||||||
# Create or edit .gitignore
|
# Next.js build output
|
||||||
echo "# Next.js build output
|
|
||||||
.next/
|
.next/
|
||||||
.next/**
|
.next/**
|
||||||
.next/dev/lock
|
.next/dev/lock
|
||||||
out
|
out
|
||||||
appro-admin
|
appro-admin
|
||||||
|
appro-admin.zip
|
||||||
|
*.zip
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
@@ -27,4 +29,7 @@ yarn-error.log*
|
|||||||
*.ntvs*
|
*.ntvs*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?" >> .gitignore
|
*.sw?
|
||||||
|
|
||||||
|
# TypeScript
|
||||||
|
tsconfig.tsbuildinfo
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user