Skip to content

Remove autogenerated files from version control #31

@coderabbitai

Description

@coderabbitai

Problem

Compiled JavaScript and TypeScript declaration files are currently tracked in version control:

  • backend/lib/prisma.d.ts
  • backend/lib/prisma.d.ts.map
  • backend/lib/prisma.js
  • backend/lib/prisma.js.map

These are build artifacts generated from backend/lib/prisma.ts and should not be committed.

Action Items

  1. Add these patterns to .gitignore:
    • backend/lib/*.js
    • backend/lib/*.d.ts
    • backend/lib/*.map
  2. Remove tracked files: git rm --cached backend/lib/prisma.{d.ts,d.ts.map,js,js.map}
  3. Ensure CI/CD builds these files from source

Related

Requested by: @yb175

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions