Skip to content

Commit 1f61d28

Browse files
committed
update to tauri v2 and latest phonic version
1 parent fd36690 commit 1f61d28

21 files changed

Lines changed: 3600 additions & 2807 deletions

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"tauri-apps.tauri-vscode",
4+
"rust-lang.rust-analyzer"
5+
]
6+
}

.vscode/tasks.json

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,33 @@
66
{
77
"label": "ui:dev",
88
"type": "shell",
9-
"isBackground": true,
109
"command": "npm",
1110
"args": [
1211
"run",
1312
"dev"
13+
],
14+
"isBackground": true,
15+
"problemMatcher": [
16+
{
17+
"pattern": [
18+
{
19+
"regexp": "(ERROR|WARNING)\\(TypeScript\\) (.*)",
20+
"severity": 1,
21+
"message": 2
22+
},
23+
{
24+
"regexp": "^ FILE (.*):(\\d*):(\\d*)$",
25+
"file": 1,
26+
"line": 2,
27+
"column": 3
28+
}
29+
],
30+
"background": {
31+
"activeOnStart": true,
32+
"beginsPattern": ".*",
33+
"endsPattern": ".*Local:.*"
34+
}
35+
}
1436
]
1537
},
1638
{
@@ -20,11 +42,38 @@
2042
"args": [
2143
"run",
2244
"build"
45+
],
46+
"problemMatcher": [
47+
{
48+
"owner": "typescript",
49+
"source": "Typescript",
50+
"fileLocation": "absolute",
51+
"applyTo": "allDocuments",
52+
"background": {
53+
"activeOnStart": true
54+
},
55+
"pattern": [
56+
{
57+
"regexp": "(ERROR|WARNING)\\(TypeScript\\) (.*)",
58+
"severity": 1,
59+
"message": 2
60+
},
61+
{
62+
"regexp": "^ FILE (.*):(\\d*):(\\d*)$",
63+
"file": 1,
64+
"line": 2,
65+
"column": 3
66+
}
67+
]
68+
}
2369
]
2470
},
2571
{
2672
"label": "tauri:dev",
2773
"type": "shell",
74+
"problemMatcher": [
75+
"$rustc"
76+
],
2877
"group": {
2978
"kind": "build",
3079
"isDefault": true
@@ -39,6 +88,9 @@
3988
{
4089
"label": "tauri:build",
4190
"type": "shell",
91+
"problemMatcher": [
92+
"$rustc"
93+
],
4294
"group": {
4395
"kind": "build",
4496
"isDefault": false

0 commit comments

Comments
 (0)