Skip to content

Commit 368d95f

Browse files
committed
Prepare for 1.53
1 parent 3b2f619 commit 368d95f

File tree

7 files changed

+711
-661
lines changed

7 files changed

+711
-661
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// See http://go.microsoft.com/fwlink/?LinkId=827846
33
// for the documentation about the extensions.json format
44
"recommendations": [
5-
"dbaeumer.vscode-eslint"
5+
"dbaeumer.vscode-eslint",
6+
"eamodio.tsl-problem-matcher"
67
]
78
}

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"outFiles": [
2929
"${workspaceFolder}/out/test/**/*.js"
3030
],
31-
"preLaunchTask": "npm: compile"
31+
"preLaunchTask": "npm: test-watch"
3232
}
3333
]
3434
}

.vscode/tasks.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,29 @@
55
"tasks": [
66
{
77
"type": "npm",
8-
"script": "webpack",
9-
"problemMatcher": "$tsc-watch",
10-
"isBackground": false,
8+
"script": "watch",
9+
"problemMatcher": [
10+
"$ts-webpack-watch",
11+
"$tslint-webpack-watch"
12+
],
13+
"isBackground": true,
1114
"presentation": {
1215
"reveal": "never"
1316
},
1417
"group": {
1518
"kind": "build",
1619
"isDefault": true
1720
}
21+
},
22+
{
23+
"type": "npm",
24+
"script": "test-watch",
25+
"problemMatcher": "$tsc-watch",
26+
"isBackground": true,
27+
"presentation": {
28+
"reveal": "never"
29+
},
30+
"group": "build"
1831
}
1932
]
20-
}
33+
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the extension will be documented in this file.
44

5+
## [1.10.0] - 2021-02-08
6+
7+
- Update dependencies for VS Code 1.53
8+
59
## [1.9.1] - 2021-01-17
610

711
- Update documentation.

0 commit comments

Comments
 (0)