Skip to content

Commit

Permalink
chore: upgrade packages and fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
modbender committed Nov 21, 2024
1 parent 7b9ef81 commit 8539bcc
Show file tree
Hide file tree
Showing 6 changed files with 3,611 additions and 1,700 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
quote_type = single
semi = false

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
28 changes: 15 additions & 13 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
// @ts-check
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'

const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended')

// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
export default createConfigForNuxt({
features: {
// Rules for module authors
tooling: true,
// Rules for formatting
stylistic: true,
},
dirs: {
src: ['./playground'],
},
})
.append
// your custom flat config here...
()
features: {
// Rules for module authors
tooling: true,
// Rules for formatting
stylistic: true,
},
dirs: {
src: ['./playground'],
},
}).append(
// your custom flat config here...
eslintPluginPrettierRecommended
)
53 changes: 28 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,39 +48,42 @@
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@nuxt/kit": "^3.13.1",
"@tiptap/extension-code-block-lowlight": "^2.6.6",
"@tiptap/extension-image": "^2.6.6",
"@tiptap/extension-link": "^2.6.6",
"@tiptap/pm": "^2.6.6",
"@tiptap/starter-kit": "^2.6.6",
"@tiptap/vue-3": "^2.6.6",
"@nuxt/kit": "^3.14.1592",
"@tiptap/extension-code-block-lowlight": "^2.10.1",
"@tiptap/extension-image": "^2.10.1",
"@tiptap/extension-link": "^2.10.1",
"@tiptap/pm": "^2.10.1",
"@tiptap/starter-kit": "^2.10.1",
"@tiptap/vue-3": "^2.10.1",
"lowlight": "^3.1.0",
"prosemirror-replaceattrs": "^1.0.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.5.6",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.1",
"@nuxtjs/tailwindcss": "^6.12.1",
"@primevue/nuxt-module": "^4.0.5",
"@primevue/themes": "^4.0.5",
"@nuxt/eslint-config": "^0.7.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/tailwindcss": "^6.12.2",
"@primevue/nuxt-module": "^4.2.2",
"@primevue/themes": "^4.2.2",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.5.4",
"changelogen": "^0.5.5",
"eslint": "^9.10.0",
"@types/node": "^22.9.1",
"changelogen": "^0.5.7",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"h3-formidable": "^1.0.0",
"nuxt": "^3.13.1",
"nuxt": "^3.14.1592",
"prettier": "^3.3.3",
"primeicons": "^7.0.0",
"primevue": "^4.0.5",
"sass": "^1.78.0",
"primevue": "^4.2.2",
"sass": "^1.81.0",
"tailwindcss-primeui": "^0.3.4",
"typescript": "^5.5.4",
"vitepress": "^1.3.4",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
"typescript": "^5.6.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.5",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"rimraf": "latest"
Expand All @@ -91,5 +94,5 @@
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.9.0"
"packageManager": "pnpm@9.14.2"
}
Loading

0 comments on commit 8539bcc

Please sign in to comment.