diff --git a/.gitignore b/.gitignore index 3a4eb11..62795fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,62 @@ -test.js -node_modules/ \ No newline at end of file +# 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 \ No newline at end of file diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..4133597 --- /dev/null +++ b/.npmignore @@ -0,0 +1,8 @@ +node_modules +dist +examples +coverage +*.log +*.tmp +.DS_Store +.env \ No newline at end of file