We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831b63c commit b66b0c9Copy full SHA for b66b0c9
desktop/package.json
@@ -4,7 +4,8 @@
4
"version": "0.1.0",
5
"type": "module",
6
"scripts": {
7
- "start-desktop": "tauri",
+ "dev": "vite",
8
+ "start-desktop": "tauri dev",
9
"build-desktop": "tsc && vite build",
10
"lint-ts": "npx eslint src",
11
"lint-ts:fix": "npx eslint src --fix",
internal/fileparser/fileparser.go
@@ -87,7 +87,7 @@ func ExecutablesFromImports(
87
88
func shortenWsPath(wsPath string, path string) string {
89
if strings.HasPrefix(path, wsPath) {
90
- return "//" + path[len(wsPath):]
+ return "//" + path[len(wsPath)+1:]
91
}
92
93
return path
0 commit comments