diff --git a/.gitignore b/.gitignore index d323884e..45dd6f38 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,73 @@ +# # +# Dependency directories +# # + +node_modules/ +jspm_packages/ + +# # +# Snowpack dependency directory (https://snowpack.dev/) +# # + +web_modules/ + +# # +# TypeScript cache +# # + +\*.tsbuildinfo + +# # +# Optional npm cache directory +# # + +.npm + +# # +# npm files +# # + +.npmrc + +# # +# Optional eslint cache +# # + +.eslintcache + +# # +# Optional stylelint cache +# # + +.stylelintcache + +# # +# Microbundle cache +# # + +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# # +# Optional REPL history +# # + +.node_repl_history + +# # +# Output of 'npm pack' +# # + +\*.tgz + +# # +# Yarn Integrity file +# # + +.yarn-integrity + # # # Binaries # # @@ -24,11 +94,43 @@ *.test # # -# Output for go coverage tool, specifically when used with LiteIDE +# Coverage directory used by tools like istanbul # # +coverage +\*.lcov *.out +# # +# nyc test coverage +# # + +.nyc_output + +# # +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +# # + +.grunt + +# # +# Bower dependency directory (https://bower.io/) +# # + +bower_components + +# # +# node-waf configuration +# # + +.lock-wscript + +# # +# Compiled binary addons (https://nodejs.org/api/addons.html) +# # + +build/Release + # # # Dependency directories (remove the comment below to include it) # vendor/ @@ -67,7 +169,154 @@ work/ __pycache__/ # # -# logs +# Logs # # -.log +logs +_.log +npm-debug.log_ +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# # +# yarn v2 +# # + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.\* + +# # +# wrangler project +# # + +.dev.vars +.wrangler/ + +# # +# sources +# # + +.src + +# # +# dist +# # + +.dist + +# # +# Private Files +# # + +.dev +keys + +# # +# dotenv environment variable files +# # + +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# # +# parcel-bundler cache (https://parceljs.org/) +# # + +.cache +.parcel-cache + +# # +# Next.js build output +# # + +.next + +# # +# Nuxt.js build / generate output +# # + +.nuxt + +# # +# vuepress build output +# # + +.vuepress/dist + +# # +# Docusaurus cache and generated files +# # + +.docusaurus + +# # +# Serverless directories +# # + +.serverless/ + +# # +# FuseBox cache +# # + +.fusebox/ + +# # +# DynamoDB Local files +# # + +.dynamodb/ + +# # +# TernJS port file +# # + +.tern-port + +# # +# Gatsby files +# # + +.cache/ + +# # +# Misc +# # + +tmp +*.user + +# # +# Python files +# # + +.opt-* + +# # +# Diagnostic reports (https://nodejs.org/api/report.html) +# # + +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# # +# Runtime data +# # + +pids +_.pid +_.seed +\*.pid.lock + +# # +# Directory for instrumented libs generated by jscoverage/JSCover +# # + +lib-cov