From f72377dbbbd2c88475fc303c95a12acaea9392de Mon Sep 17 00:00:00 2001 From: Ion Gireada Date: Sat, 7 Dec 2024 02:41:51 +0200 Subject: [PATCH] * chore(.npmignore): add .npmignore file to project * 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 --- .npmignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..240b651 --- /dev/null +++ b/.npmignore @@ -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*