Релиз 1.0.0

This commit is contained in:
2026-09-08 23:54:26 +03:00
parent 3dcf1d49f7
commit 08e13477e4
3 changed files with 2 additions and 12 deletions
-3
View File
@@ -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=="],
+1 -2
View File
@@ -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",
+1 -7
View File
@@ -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')