-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,47 @@ | ||
# .npmignore - Files and directories to exclude from the npm package | ||
|
||
# Node modules - Exclude installed dependencies | ||
node_modules/ | ||
|
||
# Build directories - Exclude build and public output directories | ||
public/ | ||
dist/ | ||
|
||
# Build configuration files - Exclude build config files | ||
webpack.config.js | ||
webpack.config.ts | ||
.DS_Store | ||
*/.DS_Store | ||
dist/package.json | ||
|
||
# OS-specific files - Exclude system-specific files | ||
.DS_Store # macOS Finder metadata | ||
*/.DS_Store # .DS_Store in any subdirectory | ||
|
||
# Package metadata - Exclude unnecessary package metadata files | ||
dist/package.json | ||
|
||
# Logs and temporary files - Exclude log files and temporary directories | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
*.log | ||
*.tmp | ||
|
||
# IDE and editor configurations - Exclude IDE-specific settings and files | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*.swo | ||
|
||
# Test and documentation files - Exclude test files and documentation | ||
tests/ | ||
*.spec.js | ||
*.spec.ts | ||
*.test.js | ||
*.test.ts | ||
coverage/ | ||
docs/ | ||
*.md | ||
|
||
# Ignore all dotfiles (except for specific ones needed) | ||
.* | ||
!.npmignore | ||
!.gitignore |