Skip to content

Commit

Permalink
* chore(.npmignore): add .npmignore file to project
Browse files Browse the repository at this point in the history
* chore(.npmignore): ignore test files, development-specific files, documentation build output, build tools and configuration, local modules and linked dependencies, example files, IDE-specific configuration files, GitHub Actions workflows, files specific to build process or environment, and private keys or configuration files
  • Loading branch information
ioncakephper committed Dec 7, 2024
1 parent fc4b46c commit f72377d
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Test files
__test__/
test/
coverage/
.nyc_output/

# Development-specific files
.DS_Store
.git
.gitignore
.editorconfig
.eslintrc*
.prettierrc*
*.log
*.lock

# Documentation build output
docs/

# Build tools and configuration
Makefile
Gulpfile.js
Gruntfile.js
webpack.config.js
tsconfig.json

# Local modules and linked dependencies
node_modules/
.npm
npm-debug.log

# Example files (if they are not meant for distribution)
examples/

# IDE-specific configuration files
.idea/
.vscode/
*.iml

# GitHub Actions workflows (already included in the .github folder, but good to reiterate)
.github/


# Files specific to your build process or environment
*.swp
*~

# Private keys or configuration files
*.key
*.pem
.env*

0 comments on commit f72377d

Please sign in to comment.