From 08e13477e44dc988957eceb8b264734c58b1d0f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=22axel=5Fverse=22=20=D0=9C=D1=83=D0=B4=D1=80=D0=BE=D0=B2?= Date: Tue, 8 Sep 2026 23:54:26 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=BB=D0=B8=D0=B7=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bun.lock | 3 --- package.json | 3 +-- src/main.js | 8 +------- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/bun.lock b/bun.lock index 0db8448..6b8c085 100644 --- a/bun.lock +++ b/bun.lock @@ -21,7 +21,6 @@ "eslint-config-vue": "^2.0.2", "eslint-plugin-prettier": "^5.5.6", "eslint-plugin-vue": "^10.10.0", - "pinia": "^4.0.3", "prettier": "^3.9.6", "tailwindcss": "^4.3.3", "vite": "^8.2.2", @@ -1246,8 +1245,6 @@ "picomatch": ["picomatch@4.0.7", "", {}, "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA=="], - "pinia": ["pinia@4.0.3", "", { "dependencies": { "nostics": "^1.1.4" }, "peerDependencies": { "@vue/devtools-api": "^8.1.5", "typescript": ">=5.6.0", "vue": "^3.5.11" }, "optionalPeers": ["typescript"] }, "sha512-XMQqpvjgG7LMqVhhFUzKLT4KEbsYbfZZ0CZU9PgdFm1O2VKBmIkykL8+SfNhOaT7sR0wT6BEgKT0YNDYWgmVRA=="], - "pkg-types": ["pkg-types@2.3.1", "", { "dependencies": { "confbox": "^0.2.4", "exsolve": "^1.0.8", "pathe": "^2.0.3" } }, "sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg=="], "possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="], diff --git a/package.json b/package.json index f6a3c15..6aefaa7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pgtune", "private": true, - "version": "0.0.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", @@ -25,7 +25,6 @@ "eslint-config-vue": "^2.0.2", "eslint-plugin-prettier": "^5.5.6", "eslint-plugin-vue": "^10.10.0", - "pinia": "^4.0.3", "prettier": "^3.9.6", "tailwindcss": "^4.3.3", "vite": "^8.2.2", diff --git a/src/main.js b/src/main.js index 4f4bbf4..5a2c575 100644 --- a/src/main.js +++ b/src/main.js @@ -1,14 +1,8 @@ import { createApp } from 'vue' -import { createPinia } from 'pinia' import '/src/assets/styles/app.css' import App from './App.vue' import { router } from './router' import ui from '@nuxt/ui/vue-plugin' import { createHead } from '@unhead/vue/client' -createApp(App) - .use(router) - .use(createPinia()) - .use(ui) - .use(createHead()) - .mount('#app') +createApp(App).use(router).use(ui).use(createHead()).mount('#app')