diff --git a/.gitignore b/.gitignore index f37acbde..a6df6ecb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ - # Created by https://www.toptal.com/developers/gitignore/api/node,macos,linux # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,linux @@ -46,6 +45,10 @@ Network Trash Folder Temporary Items .apdisk +### macOS Patch ### +# iCloud generated files +*.icloud + ### Node ### # Logs logs @@ -54,6 +57,7 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json @@ -90,8 +94,8 @@ build/Release node_modules/ jspm_packages/ -# TypeScript v1 declaration files -typings/ +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ # TypeScript cache *.tsbuildinfo @@ -120,10 +124,12 @@ typings/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files .env -.env.test -.env*.local +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache @@ -131,19 +137,12 @@ typings/ # Next.js build output .next +out # Nuxt.js build / generate output .nuxt dist -# Storybook build outputs -.out -.storybook-out -storybook-static - -# rollup.js default build output -dist/ - # Gatsby files .cache/ # Comment in the public line in if your project uses Gatsby and not Next.js @@ -153,6 +152,12 @@ dist/ # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ @@ -168,15 +173,23 @@ dist/ # Stores VSCode versions used for testing VSCode extensions .vscode-test -# Temporary folders -tmp/ -temp/ +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit # End of https://www.toptal.com/developers/gitignore/api/node,macos,linux -.svelte/ -.svelte-kit/ dist/ -graphics-pack/ -!dist/package.json -project-files \ No newline at end of file +docs/ \ No newline at end of file