Skip to content

Commit a23ab47

Browse files
committed
changelog and prep for 0.0.9
Fixes #25 Fixes #30
1 parent ca2fa84 commit a23ab47

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## 0.0.9 - 2024-03-04
4+
5+
- Handle relative paths in `--config
6+
- Add `engines.node` version to the package.json
7+
- Enable installing `extensionDependencies` automatically, and optional `installExtensions` config option.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### @vscode/test
1+
### @vscode/test-cli
22

33
> This is an experimental command-line test runner is available. Its API may change as we get feedback on it. Please try it out!
44
@@ -7,14 +7,14 @@ This is an configuration-driver command line runner for [VS Code extension tests
77
Install with:
88

99
```
10-
npm install --save-dev @vscode/test
10+
npm install --save-dev @vscode/test-cli
1111
```
1212

1313
After installing the package, the runner is available as the `vscode-test` CLI. Running it will look for a `.vscode-test.(js/json/mjs)` file relative to the current working directory. You can see the configuration [here](https://github.com/microsoft/vscode-test-cli/blob/main/src/config.cts). This may be as simple as:
1414

1515
```js
1616
// .vscode-test.mjs
17-
import { defineConfig } from '@vscode/test';
17+
import { defineConfig } from '@vscode/test-cli';
1818

1919
export default defineConfig({ files: 'out/test/**/*.test.js' });
2020
```
@@ -23,7 +23,7 @@ Or include more options. For example:
2323

2424
```js
2525
// .vscode-test.mjs
26-
import { defineConfig } from '@vscode/test';
26+
import { defineConfig } from '@vscode/test-cli';
2727

2828
export default defineConfig([
2929
{

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
"watch": "tsc --watch",
1212
"prettier": "prettier --write src"
1313
},
14+
"engines": {
15+
"node": ">=18"
16+
},
1417
"type": "module",
1518
"main": "out/index.cjs",
1619
"bin": {

0 commit comments

Comments
 (0)