From 7ea4885a57014b359718b71c6fcf07a9e9db0d5d Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Tue, 1 Oct 2024 21:13:38 +0200 Subject: [PATCH] chore: default package manager is bun Still is you want you can commit more lock files for other package managers. --- .gitignore | 3 +++ .vscode/settings.json | 3 +++ package.json | 28 ++++++++++++++-------------- 3 files changed, 20 insertions(+), 14 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 16d54bb..78f4b33 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ pnpm-debug.log* # jetbrains setting folder .idea/ + +# local files +*.local* diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..76e80fa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "npm.packageManager": "bun" +} diff --git a/package.json b/package.json index 02a9a90..bf87ca1 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,15 @@ { - "name": "tutorato", - "type": "module", - "version": "0.0.1", - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "4.15.10" - } -} \ No newline at end of file + "name": "tutorato", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "astro": "4.15.10" + } +}