Skip to content

Commit 5fc8dc4

Browse files
committed
Update deps
1 parent 7f9f981 commit 5fc8dc4

File tree

12 files changed

+545
-2528
lines changed

12 files changed

+545
-2528
lines changed

.eslintrc.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
"curly": "warn",
1515
"eqeqeq": "warn",
1616
"no-throw-literal": "warn",
17-
"semi": "off",
18-
"quotes": [
19-
"warn",
20-
"double"
21-
]
22-
}
23-
}
17+
"semi": "off"
18+
},
19+
"ignorePatterns": [
20+
"out",
21+
"dist",
22+
"**/*.d.ts"
23+
]
24+
}

.vscode/launch.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
2727
],
2828
"outFiles": [
29-
"${workspaceFolder}/out/test/**/*.js"
29+
"${workspaceFolder}/out/**/*.js",
30+
"${workspaceFolder}/dist/**/*.js"
3031
],
31-
"preLaunchTask": "npm: test-watch"
32+
"preLaunchTask": "tasks: watch-tests"
3233
}
3334
]
3435
}

.vscode/tasks.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
"tasks": [
66
{
77
"type": "npm",
8-
"script": "compile",
8+
"script": "watch",
99
"problemMatcher": [
1010
"$ts-webpack-watch",
1111
"$tslint-webpack-watch"
1212
],
13-
"isBackground": false,
13+
"isBackground": true,
1414
"presentation": {
15-
"reveal": "never"
15+
"reveal": "never",
16+
"group": "watchers"
1617
},
1718
"group": {
1819
"kind": "build",
@@ -21,13 +22,22 @@
2122
},
2223
{
2324
"type": "npm",
24-
"script": "test-watch",
25+
"script": "watch-tests",
2526
"problemMatcher": "$tsc-watch",
2627
"isBackground": true,
2728
"presentation": {
28-
"reveal": "never"
29+
"reveal": "never",
30+
"group": "watchers"
2931
},
3032
"group": "build"
33+
},
34+
{
35+
"label": "tasks: watch-tests",
36+
"dependsOn": [
37+
"npm: watch",
38+
"npm: watch-tests"
39+
],
40+
"problemMatcher": []
3141
}
3242
]
3343
}

.vscodeignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
.github/**
21
.vscode/**
32
.vscode-test/**
43
out/**
5-
src/**
64
node_modules/**
5+
src/**
76
.gitignore
87
.yarnrc
8+
webpack.config.js
99
vsc-extension-quickstart.md
1010
**/tsconfig.json
1111
**/.eslintrc.json
1212
**/*.map
1313
**/*.ts
14-
**/webpack.config.js

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.12.0] - 2022-05-05
6+
7+
- Update dependencies.
8+
59
## [1.11.0] - 2022-02-06
610

711
- Update dependencies.

0 commit comments

Comments
 (0)