Skip to content

Commit

Permalink
chore: remove experimental feature workarounds
Browse files Browse the repository at this point in the history
- update vite-plugin-vuetify to v2.0.2
- update nuxt-auth-utils to v0.0.20
  • Loading branch information
kingyue737 committed Feb 29, 2024
1 parent d7056e9 commit 4b5fe9e
Show file tree
Hide file tree
Showing 3 changed files with 384 additions and 357 deletions.
4 changes: 1 addition & 3 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ export default defineNuxtConfig({
},
session: {
name: 'nuxt-session',
password: process.env.CI
? 'your-super-long-secret-for-session-encryption'
: '',
password: '',
},
},
})
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"private": true,
"type": "module",
"packageManager": "[email protected].3",
"packageManager": "[email protected].4",
"scripts": {
"build": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt build",
"dev": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt dev -o",
"generate": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt generate",
"postinstall": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt prepare",
"preview": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt preview",
"typecheck": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' nuxt typecheck",
"test": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' vitest",
"build": "nuxt build",
"dev": "nuxt dev -o",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"test": "vitest",
"lint": "eslint . --fix --ignore-path .gitignore"
},
"devDependencies": {
Expand All @@ -18,12 +18,11 @@
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/test-utils": "^3.11.0",
"@vue/test-utils": "^2.4.4",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"happy-dom": "^13.5.2",
"happy-dom": "^13.6.2",
"nuxt": "^3.10.3",
"playwright-core": "^1.41.2",
"playwright-core": "^1.42.0",
"prettier": "^3.2.5",
"rollup-plugin-regexp": "^5.0.1",
"vitest": "^1.3.1",
Expand All @@ -32,9 +31,9 @@
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"@vueuse/nuxt": "^10.8.0",
"@vueuse/nuxt": "^10.9.0",
"echarts": "^5.5.0",
"nuxt-auth-utils": "^0.0.19",
"nuxt-auth-utils": "^0.0.20",
"vue-echarts": "^6.6.9"
}
}
Loading

0 comments on commit 4b5fe9e

Please sign in to comment.