Skip to content

Commit

Permalink
fix npm / gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
proddata committed Nov 22, 2024
1 parent 7e83c24 commit e251596
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 2 deletions.
64 changes: 62 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,62 @@
test.js
node_modules/
# Node modules
node_modules/

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids/
*.pid
*.pid.lock

# Directory for debugging Node.js
.vscode/

# OS generated files
.DS_Store
Thumbs.db

# dotenv environment variables file
.env
.env.*.local

# Output directories
dist/
build/

# Coverage directory
coverage/

# Optional npm cache directory
.npm/

# Optional Yarn Integrity file
.yarn-integrity

# Optional lock files
package-lock.json
yarn.lock

# IDE or Editor directories and files
.idea/
*.swp
*.swo

# Test output
/test-results/
.nyc_output/

# Temporary files
tmp/
temp/

# Specific to MacOS
.AppleDouble
.LSOverride

# Specific to Windows
Desktop.ini
8 changes: 8 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
dist
examples
coverage
*.log
*.tmp
.DS_Store
.env

0 comments on commit e251596

Please sign in to comment.