Skip to content

Commit

Permalink
chore: update .gitignore for better IDE and build file exclusion
Browse files Browse the repository at this point in the history
feat: add .npmignore to prevent unnecessary files from being included in npm package
  • Loading branch information
Bluzzi committed Dec 25, 2024
1 parent 7502a4c commit be06c58
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
node_modules
dist
.eslint-config-inspector
# Idea IDE:
**/.idea/

# Package lock (except for PNPM):
**/yarn.lock
**/package-lock.json
**/bun.lockb

# Packages:
**/node_modules

# Environment variables and secrets files:
**/.env*

# ESLint Inspector:
.eslint-config-inspector

# Builds:
**/build
**/dist

# TS:
**/*.tsbuildinfo

# MacOS
**/.DS_Store
10 changes: 10 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Project:
src
scripts

# Dockerfile:
Dockerfile

# Configs:
eslint.config.js
tsconfig.json

0 comments on commit be06c58

Please sign in to comment.