Skip to content

Commit bd2e8a6

Browse files
committed
chore: update deps
1 parent 83615db commit bd2e8a6

File tree

7 files changed

+3822
-1016
lines changed

7 files changed

+3822
-1016
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
// Enable the ESlint flat config support
3+
"eslint.experimental.useFlatConfig": true,
4+
5+
// Disable the default formatter, use eslint instead
6+
"prettier.enable": false,
7+
"editor.formatOnSave": false,
8+
9+
// Auto fix
10+
"editor.codeActionsOnSave": {
11+
"source.fixAll.eslint": "explicit",
12+
"source.organizeImports": "never"
13+
},
14+
15+
// Silent the stylistic rules in you IDE, but still auto fix them
16+
"eslint.rules.customizations": [
17+
{ "rule": "style/*", "severity": "off" },
18+
{ "rule": "format/*", "severity": "off" },
19+
{ "rule": "*-indent", "severity": "off" },
20+
{ "rule": "*-spacing", "severity": "off" },
21+
{ "rule": "*-spaces", "severity": "off" },
22+
{ "rule": "*-order", "severity": "off" },
23+
{ "rule": "*-dangle", "severity": "off" },
24+
{ "rule": "*-newline", "severity": "off" },
25+
{ "rule": "*quotes", "severity": "off" },
26+
{ "rule": "*semi", "severity": "off" }
27+
],
28+
29+
// Enable eslint for all supported languages
30+
"eslint.validate": [
31+
"javascript",
32+
"javascriptreact",
33+
"typescript",
34+
"typescriptreact",
35+
"vue",
36+
"html",
37+
"markdown",
38+
"json",
39+
"jsonc",
40+
"yaml",
41+
"toml"
42+
]
43+
}

eslint.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import antfu from '@antfu/eslint-config'
2+
3+
export default antfu({
4+
})

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nuxt-compile-markdown",
33
"type": "module",
44
"version": "0.0.3",
5-
"packageManager": "pnpm@8.7.1",
5+
"packageManager": "pnpm@8.12.1",
66
"description": "Nuxt Module to compile markdown files into Vue SFC at build time.",
77
"license": "MIT",
88
"repository": "nuxt-modules/compile-markdown",
@@ -29,23 +29,23 @@
2929
"test:watch": "vitest watch"
3030
},
3131
"dependencies": {
32-
"@nuxt/kit": "^3.7.0",
33-
"markdown-it": "^13.0.1",
34-
"markdown-it-mdc": "^0.1.0",
35-
"markdown-it-shikiji": "^0.6.6",
36-
"shikiji": "^0.6.6",
37-
"unplugin-vue-markdown": "^0.24.3"
32+
"@nuxt/kit": "^3.8.2",
33+
"markdown-it": "^14.0.0",
34+
"markdown-it-mdc": "^0.2.1",
35+
"markdown-it-shikiji": "^0.9.11",
36+
"shikiji": "^0.9.11",
37+
"unplugin-vue-markdown": "^0.25.2"
3838
},
3939
"devDependencies": {
40-
"@antfu/eslint-config": "^0.41.0",
40+
"@antfu/eslint-config": "^2.4.6",
4141
"@nuxt/devtools": "latest",
42-
"@nuxt/module-builder": "^0.5.1",
43-
"@nuxt/schema": "^3.7.0",
44-
"@nuxt/test-utils": "^3.7.0",
45-
"@types/node": "^20.5.7",
42+
"@nuxt/module-builder": "^0.5.4",
43+
"@nuxt/schema": "^3.8.2",
44+
"@nuxt/test-utils": "3.7.0",
45+
"@types/node": "^20.10.5",
4646
"changelogen": "^0.5.5",
47-
"eslint": "^8.48.0",
48-
"nuxt": "^3.7.0",
49-
"vitest": "^0.34.3"
47+
"eslint": "^8.56.0",
48+
"nuxt": "^3.8.2",
49+
"vitest": "^1.1.0"
5050
}
51-
}
51+
}

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"generate": "nuxi generate"
99
},
1010
"devDependencies": {
11-
"@nuxt/webpack-builder": "^3.7.0",
11+
"@nuxt/webpack-builder": "^3.8.2",
1212
"nuxt": "latest"
1313
}
1414
}

0 commit comments

Comments
 (0)