Skip to content

Commit f3e97fa

Browse files
committed
chore(deps): bump dependencies
1 parent db5bef2 commit f3e97fa

File tree

6 files changed

+232
-414
lines changed

6 files changed

+232
-414
lines changed

cspell.config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ words:
1515
- Rehype
1616
- unocss
1717
- vueuse
18+
- unrtel
1819
ignoreWords: []
1920
import: []

eslint.config.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
import antfu from '@antfu/eslint-config'
2+
import { importX } from 'eslint-plugin-import-x'
23

34
export default antfu({
45
ignores: [
56
'**/*.md',
67
'**/*.yaml',
78
'**/*.yml',
89
],
10+
rules: {
11+
'ts/ban-ts-comment': 'off',
12+
'antfu/import-dedupe': 'error',
13+
'style/padding-line-between-statements': 'error',
14+
'import-x/order': [
15+
'error',
16+
{
17+
'groups': [
18+
['type'],
19+
['builtin', 'external'],
20+
['parent', 'sibling', 'index'],
21+
],
22+
'newlines-between': 'always',
23+
},
24+
],
25+
},
26+
plugins: {
27+
'import-x': importX,
28+
},
929
})

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "obsidian-plugin-vue",
33
"type": "module",
44
"version": "0.1.2",
5-
"packageManager": "pnpm@10.11.1",
5+
"packageManager": "pnpm@10.12.1",
66
"description": "An Obsidian plugin that enables you to use Vue.js components in your notes.",
77
"author": {
88
"name": "Nólëbase",
@@ -25,23 +25,26 @@
2525
"build": "unbuild",
2626
"lint": "eslint --cache .",
2727
"lint:fix": "eslint --cache --fix .",
28-
"typecheck": "tsc --noEmit"
28+
"typecheck": "tsc --noEmit",
29+
"up": "taze -w -r -I -f && pnpm prune && pnpm dedupe"
2930
},
3031
"devDependencies": {
31-
"@antfu/eslint-config": "^4.13.3",
32+
"@antfu/eslint-config": "^4.14.1",
3233
"@codemirror/view": "^6.37.1",
33-
"@types/node": "^22.15.29",
34-
"@unrteljs/eval": "^0.1.0",
34+
"@types/node": "^22.15.31",
35+
"@unrteljs/eval": "^0.2.1",
3536
"@vue/compiler-sfc": "^3.5.16",
3637
"builtin-modules": "^5.0.0",
3738
"bumpp": "^10.1.1",
3839
"eslint": "^9.28.0",
40+
"eslint-plugin-import-x": "^4.15.1",
3941
"hast-util-to-html": "^9.0.5",
4042
"obsidian": "^1.8.7",
4143
"rehype-raw": "^7.0.0",
4244
"rehype-stringify": "^10.0.1",
4345
"remark-parse": "^11.0.0",
4446
"remark-rehype": "^11.1.2",
47+
"taze": "^19.1.0",
4548
"typescript": "^5.8.3",
4649
"unbuild": "^3.5.0",
4750
"unified": "^11.0.5",
@@ -50,6 +53,7 @@
5053
},
5154
"pnpm": {
5255
"onlyBuiltDependencies": [
56+
"esbuild",
5357
"unrs-resolver"
5458
]
5559
}

0 commit comments

Comments
 (0)