diff --git a/.gitignore b/.gitignore index 8ee54e8..a9dbb96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +//* .gitignore # Logs logs *.log @@ -7,24 +8,103 @@ yarn-error.log* pnpm-debug.log* lerna-debug.log* -node_modules -.DS_Store -dist -dist-ssr -coverage -*.local +# Dependency directories +node_modules/ +jspm_packages/ -/cypress/videos/ -/cypress/screenshots/ +# Production build +dist/ +dist-ssr/ +build/ -# Editor directories and files -.vscode/* +# Environment variables +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# IDE and Editor files +.vscode/ !.vscode/extensions.json -.idea -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +.idea/ +*.swp +*.swo +*~ -*.tsbuildinfo +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Coverage directory used by tools like istanbul +coverage/ +*.lcov + +# nyc test coverage +.nyc_output + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Vite cache +.vite/ + +# Vue.js specific +.vue/ + +# Temporary files +*.tmp +*.temp + +# Test coverage +tests/unit/coverage/ +tests/e2e/coverage/ + +# Local Netlify folder +.netlify + +# AI Marketing Frontend specific +/public/runtime-env.js.backup +/src/assets/temp/ +/public/images/uploads/ +*.backup + +# Vue DevTools +.vue-devtools + +# Cypress +cypress/videos/ +cypress/screenshots/ + +# ESLint +.eslintcache + +# Stylelint +.stylelintcache \ No newline at end of file