Skip to content

Commit 5ab72fa

Browse files
committed
feat: loading state on startup
1 parent c85f4fb commit 5ab72fa

File tree

5 files changed

+128
-113
lines changed

5 files changed

+128
-113
lines changed

.vscode/tasks.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"Unittest - Build"
1515
],
1616
"presentation": {
17-
"reveal": "never",
17+
"reveal": "never"
1818
},
1919
"group": {
2020
"kind": "build",
@@ -58,7 +58,9 @@
5858
{
5959
"type": "npm",
6060
"script": "lint",
61-
"problemMatcher": ["$eslint-stylish"],
61+
"problemMatcher": [
62+
"$eslint-stylish"
63+
],
6264
"label": "npm: lint",
6365
"detail": "eslint -c .eslintrc.js --ext .ts src",
6466
"group": {
@@ -74,8 +76,8 @@
7476
"problemMatcher": [],
7577
"options": {
7678
"env": {
77-
"CI_PYTHON_PATH": "", // Update with path to real python interpereter used for testing.
78-
"EXISTING_JUPYTER_URI": "" // Update with a server that you started yourself to avoid this script doing it
79+
"CI_PYTHON_PATH": "",
80+
"EXISTING_JUPYTER_URI": ""
7981
}
8082
}
8183
},
@@ -90,6 +92,18 @@
9092
"type": "npm",
9193
"script": "stopJupyterServer",
9294
"problemMatcher": []
95+
},
96+
{
97+
"type": "npm",
98+
"script": "watch",
99+
"path": "src/test/vscode-notebook-perf",
100+
"group": {
101+
"kind": "build",
102+
"isDefault": true
103+
},
104+
"problemMatcher": [],
105+
"label": "npm: watch - src/test/vscode-notebook-perf",
106+
"detail": "tsc -p . --watch"
93107
}
94108
],
95109
"inputs": [

0 commit comments

Comments
 (0)