Skip to content

Commit e23265d

Browse files
committed
fix: projectSrcDirectory broken path
1 parent 9321f05 commit e23265d

File tree

14 files changed

+231
-429
lines changed

14 files changed

+231
-429
lines changed

.vscode/launch.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"name": "Run Extension",
6-
"type": "extensionHost",
7-
"request": "launch",
8-
"args": [
9-
"--extensionDevelopmentPath=${workspaceFolder}"
10-
],
11-
"outFiles": [
12-
"${workspaceFolder}/out/**/*.js"
13-
],
14-
"preLaunchTask": "${defaultBuildTask}"
15-
}
16-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"args": [
9+
"--extensionDevelopmentPath=${workspaceFolder}"
10+
],
11+
"outFiles": [
12+
"${workspaceFolder}/out/**/*.js"
13+
],
14+
"preLaunchTask": "${defaultBuildTask}"
15+
}
16+
]
1717
}

knip.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ const config: KnipConfig = {
77
ignoreDependencies: ['taze', 'terser'],
88
ignoreBinaries: ['vsce'],
99
ignore: ['taze.config.ts'],
10-
tsup: {
11-
config: 'tsup.config.ts'
12-
},
10+
tsup: { config: 'tsup.config.ts' },
1311
},
1412
},
1513
ignoreWorkspaces: ['ui']

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "nuxtr-vscode",
33
"displayName": "Nuxtr",
44
"description": "An extension for Nuxt offering commands and tools to make your experience more pleasant.",
5-
"version": "0.2.13",
6-
"packageManager": "[email protected].1",
5+
"version": "0.2.14",
6+
"packageManager": "[email protected].2",
77
"engines": {
88
"vscode": "^1.85.0"
99
},
@@ -1104,25 +1104,25 @@
11041104
"@types/fs-extra": "^11.0.4",
11051105
"@types/node": "20.4.1",
11061106
"@types/vscode": "^1.85.0",
1107-
"@typescript-eslint/eslint-plugin": "^6.18.1",
1108-
"@typescript-eslint/parser": "^6.18.1",
1107+
"@typescript-eslint/eslint-plugin": "^6.19.1",
1108+
"@typescript-eslint/parser": "^6.19.1",
11091109
"changelogen": "^0.5.5",
11101110
"eslint": "^8.56.0",
11111111
"eslint-plugin-oxlint": "^0.1.0",
11121112
"knip": "^3.13.2",
11131113
"nuxi-edge": "3.9.1-1697113884.a6acb6a",
11141114
"taze": "^0.11.4",
1115-
"terser": "^5.26.0",
1115+
"terser": "^5.27.0",
11161116
"tsup": "^7.3.0",
11171117
"typescript": "^5.3.3"
11181118
},
11191119
"dependencies": {
1120-
"@nuxt/schema": "^3.9.1",
1120+
"@nuxt/schema": "^3.9.3",
11211121
"destr": "^2.0.2",
11221122
"fs-extra": "^11.2.0",
11231123
"giget": "^1.2.1",
11241124
"jiti": "^1.21.0",
1125-
"magicast": "^0.3.2",
1125+
"magicast": "^0.3.3",
11261126
"ofetch": "^1.3.3",
11271127
"pathe": "^1.1.2",
11281128
"pkg-types": "^1.0.3",
@@ -1138,4 +1138,4 @@
11381138
"uglify-js@<2.6.0": ">=3.17.4"
11391139
}
11401140
}
1141-
}
1141+
}

0 commit comments

Comments
 (0)