From 978897e123d61c3330efd17ec9ca0ffb2d662ec7 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:35:32 -0500 Subject: [PATCH 1/6] commit vscode workspace file --- .vscode/zen-site-next.code-workspace | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/zen-site-next.code-workspace diff --git a/.vscode/zen-site-next.code-workspace b/.vscode/zen-site-next.code-workspace new file mode 100644 index 0000000..a9078fa --- /dev/null +++ b/.vscode/zen-site-next.code-workspace @@ -0,0 +1,11 @@ +{ + "folders": [ + { + "path": ".." + } + ], + "settings": { + "typescript.tsdk": ".yarn/sdks/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true + } +} \ No newline at end of file From dc63cb253eb708ab095b98c0af1fa1c5d61d75d1 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:36:00 -0500 Subject: [PATCH 2/6] commit suggested vscode launch settings https://nextjs.org/docs/pages/building-your-application/configuring/debugging#debugging-with-vs-code --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..cc8b8ba --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Next.js: debug server-side", + "type": "node-terminal", + "request": "launch", + "command": "yarn dev" + }, + { + "name": "Next.js: debug client-side", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000" + }, + { + "name": "Next.js: debug full stack", + "type": "node-terminal", + "request": "launch", + "command": "yarn dev", + "serverReadyAction": { + "pattern": "- Local:.+(https?://.+)", + "uriFormat": "%s", + "action": "debugWithChrome" + } + } + ] +} From a0cb4c15ee26e481c53fba95b9b928bdbae5b9c5 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:38:53 -0500 Subject: [PATCH 3/6] Revert "commit vscode workspace file" This reverts commit 978897e123d61c3330efd17ec9ca0ffb2d662ec7. --- .vscode/zen-site-next.code-workspace | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .vscode/zen-site-next.code-workspace diff --git a/.vscode/zen-site-next.code-workspace b/.vscode/zen-site-next.code-workspace deleted file mode 100644 index a9078fa..0000000 --- a/.vscode/zen-site-next.code-workspace +++ /dev/null @@ -1,11 +0,0 @@ -{ - "folders": [ - { - "path": ".." - } - ], - "settings": { - "typescript.tsdk": ".yarn/sdks/typescript/lib", - "typescript.enablePromptUseWorkspaceTsdk": true - } -} \ No newline at end of file From 2cb6065d3350ef5a03df7d9d9676de98a8afe133 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:40:04 -0500 Subject: [PATCH 4/6] commit suggested vscode gitignore settings https://stackoverflow.com/a/57749909/23029493 --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitignore b/.gitignore index 852c26f..1334e17 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,19 @@ yarn-error.log* # Sentry Config File .sentryclirc + +# Created by https://www.gitignore.io/api/visualstudiocode +# Edit at https://www.gitignore.io/?templates=visualstudiocode + +### VisualStudioCode ### +.vscode/* # Maybe .vscode/**/* instead - see comments +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +### VisualStudioCode Patch ### +# Ignore all local history of files +**/.history + +# End of https://www.gitignore.io/api/visualstudiocode From f09b21c3aee26701b6c27726e8a91a4052db4650 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:45:12 -0500 Subject: [PATCH 5/6] try different gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1334e17..accc213 100644 --- a/.gitignore +++ b/.gitignore @@ -45,7 +45,7 @@ yarn-error.log* # Edit at https://www.gitignore.io/?templates=visualstudiocode ### VisualStudioCode ### -.vscode/* # Maybe .vscode/**/* instead - see comments +.vscode/ !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json @@ -56,3 +56,4 @@ yarn-error.log* **/.history # End of https://www.gitignore.io/api/visualstudiocode + From 3a7019320e2a79ad04e6768c1aea1836956a5c06 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 12:47:41 -0500 Subject: [PATCH 6/6] don't include zipfs in recommended extensions --- .vscode/extensions.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index daaa5ee..1d7ac85 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,7 +1,3 @@ { - "recommendations": [ - "arcanis.vscode-zipfs", - "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode" - ] + "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] }