From 564c7be3d60641f6b9e49957ec1a61971b966574 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 10 Jun 2022 20:13:48 +0100 Subject: [PATCH] chore(.gitignore): use updated skeleton template (#40) --- .gitignore | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b5908a9..c1b9a5c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,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 @@ -53,6 +54,9 @@ web_modules/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ @@ -68,9 +72,12 @@ web_modules/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files .env -.env.test +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache @@ -93,6 +100,13 @@ dist # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ @@ -123,8 +137,8 @@ dist # lock files package-lock.json -yarn.lock pnpm-lock.yaml +yarn.lock # editor files .vscode